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/serialization.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/serialization.h')
-rw-r--r-- | src/serialization.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/serialization.h b/src/serialization.h index 0d74ccf48..533ddc8c4 100644 --- a/src/serialization.h +++ b/src/serialization.h @@ -59,12 +59,13 @@ with this program; if not, write to the Free Software Foundation, Inc., 21: dynamic content type allocation 22: minerals removed, facedir & wallmounted changed 23: new node metadata format - 24: 16-bit node ids and node timers + 24: 16-bit node ids and node timers (never released as stable) + 25: Improved node timer format */ // This represents an uninitialized or invalid format #define SER_FMT_VER_INVALID 255 // Highest supported serialization version -#define SER_FMT_VER_HIGHEST 24 +#define SER_FMT_VER_HIGHEST 25 // Lowest supported serialization version #define SER_FMT_VER_LOWEST 0 |