diff options
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/Config/dotconfpp/dotconfpp.cpp | 4 | ||||
-rw-r--r-- | src/shared/Database/DBCStructure.h | 3 | ||||
-rw-r--r-- | src/shared/revision_nr.h | 2 |
3 files changed, 5 insertions, 4 deletions
diff --git a/src/shared/Config/dotconfpp/dotconfpp.cpp b/src/shared/Config/dotconfpp/dotconfpp.cpp index 543e8acf1f4..c46b1fe6fb9 100644 --- a/src/shared/Config/dotconfpp/dotconfpp.cpp +++ b/src/shared/Config/dotconfpp/dotconfpp.cpp @@ -138,7 +138,7 @@ int DOTCONFDocument::cleanupLine(char * line) quoted = !quoted; ++line; continue; } - if(isspace(*line) && !quoted){ + if(isspace((unsigned char)*line) && !quoted){ *bg++ = 0; if(strlen(start)){ @@ -154,7 +154,7 @@ int DOTCONFDocument::cleanupLine(char * line) words.push_back(word); } start = bg; - while(isspace(*++line)) {} + while(isspace((unsigned char)*++line)) {} continue; } diff --git a/src/shared/Database/DBCStructure.h b/src/shared/Database/DBCStructure.h index 26028245e6e..9c3661ffbac 100644 --- a/src/shared/Database/DBCStructure.h +++ b/src/shared/Database/DBCStructure.h @@ -963,7 +963,8 @@ struct MapEntry return !IsDungeon() || MapID==209 || MapID==269 || MapID==309 || // TanarisInstance, CavernsOfTime, Zul'gurub MapID==509 || MapID==534 || MapID==560 || // AhnQiraj, HyjalPast, HillsbradPast - MapID==568 || MapID==615 || MapID==616; // ZulAman, Obsidian Sanctrum, Eye Of Eternity + MapID==568 || MapID==580 || MapID==615 || // ZulAman, Sunwell Plateau, Obsidian Sanctrum + MapID==616; // Eye Of Eternity } bool IsContinent() const diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 573cce31616..7f75b49b7ca 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7154" + #define REVISION_NR "7158" #endif // __REVISION_NR_H__ |