aboutsummaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua9
1 files changed, 4 insertions, 5 deletions
diff --git a/init.lua b/init.lua
index 37fa377..89e9b02 100644
--- a/init.lua
+++ b/init.lua
@@ -1,4 +1,3 @@
-
-- Detect optional mods.
local armor_path = minetest.get_modpath("3d_armor")
@@ -11,8 +10,8 @@ elevator = {
VISUAL_INCREASE = 1.75,
VERSION = 8, -- Elevator interface/database version.
PTIMEOUT = minetest.settings:get("elevator_time") or 120, -- Maximum time a box can go without players nearby.
- SLOW_DIST = 16
- SLOW_SPEED = 1.75
+ SLOW_DIST = 16,
+ SLOW_SPEED = 1.75,
boxes = {}, -- Elevator boxes in action.
lastboxes = {}, -- Player near box timeout.
riding = {}, -- Players riding boxes.
@@ -56,8 +55,8 @@ elevator.create_box = function(motorhash, pos, target, sender)
local delta_y = math.abs(pos.y-target.y)
local speed = elevator.SPEED
- if (delta_y<SLOW_DIST) then
- speed = SLOW_SPEED
+ if (delta_y<elevator.SLOW_DIST) then
+ speed = elevator.SLOW_SPEED
end