diff options
| author | Novatux <nathanael.courant@laposte.net> | 2013-11-23 15:35:49 +0100 |
|---|---|---|
| committer | Novatux <nathanael.courant@laposte.net> | 2013-11-30 18:37:56 +0100 |
| commit | d879a539cd19ddd1ee34afec2512fb2238de2822 (patch) | |
| tree | 68105678426cb1a498bfe3ba4354506a9a560409 /src/clientserver.h | |
| parent | 752e11e11411d72868a406d35538adc5d1126655 (diff) | |
| download | dragonfireclient-d879a539cd19ddd1ee34afec2512fb2238de2822.tar.xz | |
Add minetest.swap_node
Diffstat (limited to 'src/clientserver.h')
| -rw-r--r-- | src/clientserver.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/clientserver.h b/src/clientserver.h index 67a4846a6..90f6f9a88 100644 --- a/src/clientserver.h +++ b/src/clientserver.h @@ -102,7 +102,7 @@ with this program; if not, write to the Free Software Foundation, Inc., added to object properties */ -#define LATEST_PROTOCOL_VERSION 21 +#define LATEST_PROTOCOL_VERSION 22 // Server's supported network protocol range #define SERVER_PROTOCOL_VERSION_MIN 13 @@ -139,6 +139,12 @@ enum ToClientCommand TOCLIENT_BLOCKDATA = 0x20, //TODO: Multiple blocks TOCLIENT_ADDNODE = 0x21, + /* + u16 command + v3s16 position + serialized mapnode + u8 keep_metadata // Added in protocol version 22 + */ TOCLIENT_REMOVENODE = 0x22, TOCLIENT_PLAYERPOS = 0x23, // Obsolete |
