aboutsummaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorGabriel Pérez-Cerezo <gabriel@gpcf.eu>2020-05-01 23:01:15 +0200
committerGabriel Pérez-Cerezo <gabriel@gpcf.eu>2020-05-01 23:01:15 +0200
commit575bc0c119f9aa61c5e24411ad46701c52e17a63 (patch)
treebb7ed72f9df910fbf07f8d587669ed2c819e63a0 /init.lua
parent80c492fd23b3ac930d0786bd55c4e7e475fb26ce (diff)
downloadelevator-575bc0c119f9aa61c5e24411ad46701c52e17a63.tar.gz
elevator-575bc0c119f9aa61c5e24411ad46701c52e17a63.tar.bz2
elevator-575bc0c119f9aa61c5e24411ad46701c52e17a63.zip
Improve luacheck, remove some unused variablesHEADmaster
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index eee4d8a..68f79d4 100644
--- a/init.lua
+++ b/init.lua
@@ -53,7 +53,7 @@ elevator.create_box = function(motorhash, pos, target, sender)
obj:get_luaentity().vmult = (target.y < pos.y) and -1 or 1
-- FIX for "overshooting"
local delta_y = math.abs(pos.y-target.y)
-
+
local speed = elevator.SPEED
if (delta_y<elevator.SLOW_DIST) then
speed = elevator.SLOW_SPEED
@@ -147,7 +147,6 @@ elevator.build_motor = function(hash)
end
elevator.unbuild = function(pos, add)
- local need_saving = false
local p = table.copy(pos)
p.y = p.y - 1
-- Loop down through the network, set any elevators below this to the off position.