mirror of
https://github.com/minetest-mods/maptools.git
synced 2024-11-05 01:30:32 +01:00
Fix maptools:drowning
using an invalid value and being walkable
This prevented Minetest from starting (tested on Minetest 5.3.0-dev-cb9a44ef8). Being walkable also made it impossible to actually drown in, except when using noclip mode.
This commit is contained in:
parent
f9bf6a0951
commit
246d525c20
|
@ -476,7 +476,8 @@ minetest.register_node("maptools:drowning", {
|
|||
drawtype = "airlike",
|
||||
paramtype = "light",
|
||||
pointable = false,
|
||||
drowning = true,
|
||||
walkable = false,
|
||||
drowning = 1,
|
||||
sunlight_propagates = true,
|
||||
drop = "",
|
||||
groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
|
||||
|
|
Loading…
Reference in New Issue
Block a user