diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-03-25 20:36:02 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-03-25 20:36:02 +0300 |
commit | 836595313c9ea4ea5b89063e0077025e4e6708b9 (patch) | |
tree | dc4e7e182b4233fff3142e80fe0e9ca7ca1d2c49 | |
parent | 6779036d25e460ca5e8c6d290772e78c3277ccfc (diff) | |
download | minetest-836595313c9ea4ea5b89063e0077025e4e6708b9.tar.gz minetest-836595313c9ea4ea5b89063e0077025e4e6708b9.tar.bz2 minetest-836595313c9ea4ea5b89063e0077025e4e6708b9.zip |
Raise PROTOCOL_VERSION to 9, as this is not compatible with earlier versions
-rw-r--r-- | src/clientserver.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/clientserver.h b/src/clientserver.h index 8ac0aa877..203f8a727 100644 --- a/src/clientserver.h +++ b/src/clientserver.h @@ -47,9 +47,12 @@ with this program; if not, write to the Free Software Foundation, Inc., PROTOCOL_VERSION 8: Digging based on item groups Many things + PROTOCOL_VERSION 9: + ContentFeatures and NodeDefManager use a different serialization + format; better for future version cross-compatibility */ -#define PROTOCOL_VERSION 8 +#define PROTOCOL_VERSION 9 #define PROTOCOL_ID 0x4f457403 |