LocalPlayer::accelerateHorizontal: cleanups
[oweals/minetest.git] / src / staticobject.h
index 208fb2cc86caf387cf1d9292d06e650d73892a9a..fb73befd38f3b405d321e64a90822e0f8453b09a 100644 (file)
@@ -29,15 +29,11 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 struct StaticObject
 {
-       u8 type;
+       u8 type = 0;
        v3f pos;
        std::string data;
 
-       StaticObject():
-               type(0),
-               pos(0,0,0)
-       {
-       }
+       StaticObject() {}
        StaticObject(u8 type_, v3f pos_, const std::string &data_):
                type(type_),
                pos(pos_),
@@ -88,7 +84,7 @@ public:
 
        void serialize(std::ostream &os);
        void deSerialize(std::istream &is);
-       
+
        /*
                NOTE: When an object is transformed to active, it is removed
                from m_stored and inserted to m_active.