mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-14 00:55:20 +02:00
Ladders implemented!
This commit is contained in:
committed by
Giuseppe Bilotta
parent
bc2819cab2
commit
1c59cff832
@@ -128,6 +128,8 @@ struct ContentFeatures
|
||||
bool pointable;
|
||||
// Player can dig these
|
||||
bool diggable;
|
||||
// Player can climb these
|
||||
bool climbable;
|
||||
// Player can build on these
|
||||
bool buildable_to;
|
||||
// Whether the node has no liquid, source liquid or flowing liquid
|
||||
@@ -171,6 +173,7 @@ struct ContentFeatures
|
||||
walkable = true;
|
||||
pointable = true;
|
||||
diggable = true;
|
||||
climbable = false;
|
||||
buildable_to = false;
|
||||
liquid_type = LIQUID_NONE;
|
||||
wall_mounted = false;
|
||||
|
Reference in New Issue
Block a user