mirror of
https://github.com/minetest-mods/maptools.git
synced 2025-01-11 08:40:18 +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",
|
drawtype = "airlike",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
pointable = false,
|
pointable = false,
|
||||||
drowning = true,
|
walkable = false,
|
||||||
|
drowning = 1,
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
drop = "",
|
drop = "",
|
||||||
groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
|
groups = {unbreakable = 1, not_in_creative_inventory = maptools.creative},
|
||||||
|
Loading…
Reference in New Issue
Block a user