Move rightclickable to the proper place
authorPilzAdam <pilzadam@minetest.net>
Sat, 23 Mar 2013 22:15:30 +0000 (23:15 +0100)
committerPilzAdam <pilzadam@minetest.net>
Sat, 23 Mar 2013 22:15:30 +0000 (23:15 +0100)
src/clientserver.h
src/nodedef.cpp

index 3292d1e9e944a642d5de023bb5fa5f8b96e1c75c..6d830b92b423af1fd328855c0dd4d9018bb6b809 100644 (file)
@@ -81,6 +81,7 @@ SharedBuffer<u8> makePacket_TOCLIENT_TIME_OF_DAY(u16 time, float time_speed);
                TOCLIENT_SHOW_FORMSPEC
        PROTOCOL_VERSION 17:
                Serialization format change: include backface_culling flag in TileDef
+               Added rightclickable field in nodedef
 */
 
 #define LATEST_PROTOCOL_VERSION 17
index 7f6c8a054a7354b9a2f87737e353ede6aafcb190..d41df5c3b8a394f47c3ec10cf8d3a1018eb43aaa 100644 (file)
@@ -275,9 +275,9 @@ void ContentFeatures::serialize(std::ostream &os, u16 protocol_version)
        serializeSimpleSoundSpec(sound_footstep, os);
        serializeSimpleSoundSpec(sound_dig, os);
        serializeSimpleSoundSpec(sound_dug, os);
+       writeU8(os, rightclickable);
        // Stuff below should be moved to correct place in a version that otherwise changes
        // the protocol version
-       writeU8(os, rightclickable);
 }
 
 void ContentFeatures::deSerialize(std::istream &is)
@@ -336,12 +336,12 @@ void ContentFeatures::deSerialize(std::istream &is)
        deSerializeSimpleSoundSpec(sound_footstep, is);
        deSerializeSimpleSoundSpec(sound_dig, is);
        deSerializeSimpleSoundSpec(sound_dug, is);
+       rightclickable = readU8(is);
        // If you add anything here, insert it primarily inside the try-catch
        // block to not need to increase the version.
        try{
                // Stuff below should be moved to correct place in a version that
                // otherwise changes the protocol version
-               rightclickable = readU8(is);
        }catch(SerializationError &e) {};
 }