diff options
author | Rui <rui.minetest@gmail.com> | 2017-06-12 04:20:50 +0900 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-06-11 21:20:50 +0200 |
commit | 683ab3a154a40f13dd1bcd54ba111f7b21e98483 (patch) | |
tree | 9cacaccdf546819a24391630f24424d7759df2fb /src/network | |
parent | 65819f3b9f8229666a30b91ef2d289ebc6085097 (diff) | |
download | minetest-683ab3a154a40f13dd1bcd54ba111f7b21e98483.tar.gz minetest-683ab3a154a40f13dd1bcd54ba111f7b21e98483.tar.bz2 minetest-683ab3a154a40f13dd1bcd54ba111f7b21e98483.zip |
Fix the serialization error by ff73c7a (#5964)
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/networkprotocol.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/network/networkprotocol.h b/src/network/networkprotocol.h index f003cf26a..8304d3003 100644 --- a/src/network/networkprotocol.h +++ b/src/network/networkprotocol.h @@ -158,10 +158,11 @@ with this program; if not, write to the Free Software Foundation, Inc., PROTOCOL VERSION 33: Add TOCLIENT_UPDATE_PLAYER_LIST and send the player list to the client, instead of guessing based on the active object list. - + PROTOCOL VERSION 34: + Add sound pitch */ -#define LATEST_PROTOCOL_VERSION 33 +#define LATEST_PROTOCOL_VERSION 34 // Server's supported network protocol range #define SERVER_PROTOCOL_VERSION_MIN 24 |