General English fixes (#52)

* Speeling fixes

* Speeling/capitalisation

* More speeling

* Label grammar consistency

* Consistency

* Phrasing

* Consistency

* Clarity of const

* Consistency

* Consistency

* Speeling

* Apostrophes: check whether they need escaping

* Capitalisation (more apostrophes need checking)

* Americanisation

* Clarity

* Contraction

* Clarity

* Speeling
This commit is contained in:
mark9064
2018-05-20 00:17:11 +01:00
committed by Cooldude2606
parent be8711e1ab
commit 96b428ed37
18 changed files with 79 additions and 79 deletions

View File

@@ -28,7 +28,7 @@ commands.add_command('home', 'Go to you home position', {}, function(event,args)
player.teleport(player.surface.find_non_colliding_position('player',_homes()[player.index][1],32,1),player.surface)
end)
commands.add_command('return', 'Go to where you were before using /home', {}, function(event,args)
commands.add_command('return', 'Return to your previous position after using /home', {}, function(event,args)
local player = Game.get_player(event)
if not _homes()[player.index] then _homes()[player.index] = {player.force.get_spawn_position(player.surface),player.force.get_spawn_position(player.surface)} end
local _temp = {math.floor(player.position.x),math.floor(player.position.y)}