1
0

Fix whitespace errors to silence luacheck.

Currently all minetest_game PR's are failing travis since the
upstream luacheck now also warns about whitespace issues, and
there are a few of those in the code. This fixes all of them
so we can yet again rely on luacheck.
Dieser Commit ist enthalten in:
Auke Kok
2016-11-19 19:24:37 -08:00
committet von Auke Kok
Ursprung 47efa2f558
Commit 75caa9167c
7 geänderte Dateien mit 11 neuen und 11 gelöschten Zeilen

Datei anzeigen

@@ -43,9 +43,9 @@ end
sethome.get = function(name)
local pos = homepos[name]
if pos then
return vector.new(pos)
return vector.new(pos)
else
return nil
return nil
end
end