diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-07-24 14:56:32 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-07-24 15:03:46 +0300 |
commit | 5c31445117ea88061dc4ee60e0dec4d11c8c3ed7 (patch) | |
tree | 285b0d332b4d9ca9b05269984a2b38d6ad40a8c2 /src/nodetimer.h | |
parent | 717ae6799542d000952c80d834bd3d9892bc9616 (diff) | |
download | minetest-5c31445117ea88061dc4ee60e0dec4d11c8c3ed7.tar.gz minetest-5c31445117ea88061dc4ee60e0dec4d11c8c3ed7.tar.bz2 minetest-5c31445117ea88061dc4ee60e0dec4d11c8c3ed7.zip |
Improve node timer format (map format version 25) and update mapformat.txt
Diffstat (limited to 'src/nodetimer.h')
-rw-r--r-- | src/nodetimer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nodetimer.h b/src/nodetimer.h index f8d3e1c57..c643ab888 100644 --- a/src/nodetimer.h +++ b/src/nodetimer.h @@ -57,8 +57,8 @@ public: NodeTimerList() {} ~NodeTimerList() {} - void serialize(std::ostream &os) const; - void deSerialize(std::istream &is); + void serialize(std::ostream &os, u8 map_format_version) const; + void deSerialize(std::istream &is, u8 map_format_version); // Get timer NodeTimer get(v3s16 p){ |