diff --git a/src/clientserver.h b/src/clientserver.h index 4767a65af..559fb5b15 100644 --- a/src/clientserver.h +++ b/src/clientserver.h @@ -55,10 +55,12 @@ with this program; if not, write to the Free Software Foundation, Inc., TOCLIENT_PRIVILEGES Version raised to force 'fly' and 'fast' privileges into effect. Node metadata change (came in later; somewhat incompatible) - TileDef in ContentFeatures (non-TileDef deserialization is supported) + PROTOCOL_VERSION 11: + TileDef in ContentFeatures + Nodebox drawtype */ -#define PROTOCOL_VERSION 10 +#define PROTOCOL_VERSION 11 #define PROTOCOL_ID 0x4f457403 diff --git a/src/nodedef.cpp b/src/nodedef.cpp index 1b85a9558..47a29a6fc 100644 --- a/src/nodedef.cpp +++ b/src/nodedef.cpp @@ -216,7 +216,7 @@ void ContentFeatures::reset() void ContentFeatures::serialize(std::ostream &os) { - writeU8(os, 4); // version + writeU8(os, 5); // version os<