diff options
author | ShadowNinja <noreply@gmail.com> | 2013-10-30 15:46:52 -0400 |
---|---|---|
committer | ShadowNinja <noreply@gmail.com> | 2013-11-01 10:27:23 -0400 |
commit | 8bc68645cb0c0145c8229bc6876bf590a8eef0ca (patch) | |
tree | c8c624085db57f2d3ea05cb675516815bdd47c6d /src/mapnode.h | |
parent | 6e17503208e7edf1bd74ce4d57b09b1830571ec7 (diff) | |
download | minetest-8bc68645cb0c0145c8229bc6876bf590a8eef0ca.tar.gz minetest-8bc68645cb0c0145c8229bc6876bf590a8eef0ca.tar.bz2 minetest-8bc68645cb0c0145c8229bc6876bf590a8eef0ca.zip |
Raise the maximum node limit to 0x7fff
As agreed to by kahrl
Diffstat (limited to 'src/mapnode.h')
-rw-r--r-- | src/mapnode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapnode.h b/src/mapnode.h index 3c6208436..f19885d87 100644 --- a/src/mapnode.h +++ b/src/mapnode.h @@ -43,7 +43,7 @@ typedef u16 content_t; there is enough room for dummy node IDs, which are created when a MapBlock containing unknown node names is loaded from disk. */ -#define MAX_REGISTERED_CONTENT 0xfffU +#define MAX_REGISTERED_CONTENT 0x7fffU /* A solid walkable node with the texture unknown_node.png. |