diff options
Diffstat (limited to 'src/serverobject.h')
-rw-r--r-- | src/serverobject.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/serverobject.h b/src/serverobject.h index 635160a03..0130ca1bf 100644 --- a/src/serverobject.h +++ b/src/serverobject.h @@ -22,9 +22,9 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "irrlichttypes.h" #include "activeobject.h" -#include "utility.h" #include "inventorymanager.h" #include "itemgroup.h" +#include "util/container.h" /* @@ -96,8 +96,7 @@ public: { setBasePosition(pos); } // If object has moved less than this and data has not changed, // saving to disk may be omitted - virtual float getMinimumSavedMovement() - { return 2.0*BS; } + virtual float getMinimumSavedMovement(); virtual bool isPeaceful(){return true;} |