From 842eb5da280b09e046531dd03fe9b9b20752ad12 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Mon, 28 Nov 2011 00:45:34 +0200 Subject: Replace old active block random node modifying things with actual ActiveBlockModifiers --- src/map.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/map.h') diff --git a/src/map.h b/src/map.h index 413a7fc05..2bd2c0eb8 100644 --- a/src/map.h +++ b/src/map.h @@ -32,6 +32,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "constants.h" #include "voxel.h" #include "utility.h" // Needed for UniqueQueue, a member of Map +#include "modifiedstate.h" extern "C" { #include "sqlite3.h" @@ -236,7 +237,7 @@ public: virtual void beginSave() {return;}; virtual void endSave() {return;}; - virtual void save(bool only_changed){assert(0);}; + virtual void save(ModifiedState save_level){assert(0);}; // Server implements this. // Client leaves it as no-op. @@ -396,7 +397,7 @@ public: void beginSave(); void endSave(); - void save(bool only_changed); + void save(ModifiedState save_level); //void loadAll(); void listAllLoadableBlocks(core::list &dst); -- cgit v1.2.3