Cleanup in content_mapblock (#5746)
[oweals/minetest.git] / src / object_properties.cpp
index f4e4953babe6380f9037ca0f632341ccdff3b847..a77368151db64753f26314cf7b7fffbbfd53117d 100644 (file)
@@ -117,6 +117,7 @@ void ObjectProperties::serialize(std::ostream &os) const
        writeARGB8(os, nametag_color);
        writeF1000(os, automatic_face_movement_max_rotation_per_sec);
        os << serializeString(infotext);
+       os << serializeString(wield_item);
 
        // Add stuff only at the bottom.
        // Never remove anything, because we don't want new versions of this
@@ -159,6 +160,7 @@ void ObjectProperties::deSerialize(std::istream &is)
                        nametag_color = readARGB8(is);
                        automatic_face_movement_max_rotation_per_sec = readF1000(is);
                        infotext = deSerializeString(is);
+                       wield_item = deSerializeString(is);
                }catch(SerializationError &e){}
        }
        else