Doors: Fix uninitialized state variable

master
Duane Robertson 2016-05-21 08:45:55 -05:00 committed by paramat
parent b9422ed44e
commit 7681682d28
1 changed files with 2 additions and 0 deletions

View File

@ -140,6 +140,8 @@ function _doors.door_toggle(pos, clicker)
-- fix up lvm-placed right-hinged doors, default closed
if minetest.get_node(pos).name:sub(-2) == "_b" then
state = 2
else
state = 0
end
else
state = tonumber(state)