Server: Improve some log messages (#9820)
[oweals/minetest.git] / src / object_properties.h
index d273b52f4a2a24e9e529fd4bf0a190b6d3b973bf..3895f337990c5818a04272cd5f4912f026fe5ec3 100644 (file)
@@ -27,18 +27,17 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 struct ObjectProperties
 {
-       s16 hp_max = 1;
+       u16 hp_max = 1;
        u16 breath_max = 0;
        bool physical = false;
        bool collideWithObjects = true;
-       float weight = 5.0f;
        // Values are BS=1
        aabb3f collisionbox = aabb3f(-0.5f, -0.5f, -0.5f, 0.5f, 0.5f, 0.5f);
        aabb3f selectionbox = aabb3f(-0.5f, -0.5f, -0.5f, 0.5f, 0.5f, 0.5f);
        bool pointable = true;
        std::string visual = "sprite";
        std::string mesh = "";
-       v2f visual_size = v2f(1, 1);
+       v3f visual_size = v3f(1, 1, 1);
        std::vector<std::string> textures;
        std::vector<video::SColor> colors;
        v2s16 spritediv = v2s16(1, 1);