[11917] Increment map version magic. You have to re-extract maps, vmaps and mmaps

With this commit, Pathfinding is implemented in MaNGOS!
Thank you very much to all who contributed, especially to Faramir118 and qsa.

Please report bugs and required offmesh changes, so that they can be adressed
For *nix users of the extractor, help about compiling content of contrib/ can be found in forums
This commit is contained in:
faramir118 2012-01-30 00:08:34 +01:00 committed by Schmoozerd
parent 1d42263285
commit 68b701f5d1
4 changed files with 4 additions and 4 deletions

View file

@ -277,7 +277,7 @@ void ReadLiquidTypeTableDBC()
// Map file format data
static char const* MAP_MAGIC = "MAPS";
static char const* MAP_VERSION_MAGIC = "v1.1";
static char const* MAP_VERSION_MAGIC = "v1.2";
static char const* MAP_AREA_MAGIC = "AREA";
static char const* MAP_HEIGHT_MAGIC = "MHGT";
static char const* MAP_LIQUID_MAGIC = "MLIQ";

View file

@ -62,7 +62,7 @@ namespace MMAP
// see following files:
// contrib/extractor/system.cpp
// src/game/GridMap.cpp
static char const* MAP_VERSION_MAGIC = "v1.1";
static char const* MAP_VERSION_MAGIC = "v1.2";
struct MeshData
{

View file

@ -31,7 +31,7 @@
#include "Util.h"
char const* MAP_MAGIC = "MAPS";
char const* MAP_VERSION_MAGIC = "v1.1";
char const* MAP_VERSION_MAGIC = "v1.2";
char const* MAP_AREA_MAGIC = "AREA";
char const* MAP_HEIGHT_MAGIC = "MHGT";
char const* MAP_LIQUID_MAGIC = "MLIQ";

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "11916"
#define REVISION_NR "11917"
#endif // __REVISION_NR_H__