diff options
| author | Shauren <shauren.trinity@gmail.com> | 2017-02-01 22:33:14 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2017-02-01 22:33:14 +0100 |
| commit | 40054ba475407c56246227d55e21573c22978a2a (patch) | |
| tree | 4d4e279c378310ed527dfe28289a112d67965a8e /src | |
| parent | 4b8c8bbb878c334d66044ee23191fa9205ba2647 (diff) | |
Core/Maps: Add broken isles to continent list
by @zamalaev
Closes #18941
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/game/DataStores/DB2Structure.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/DataStores/DB2Structure.h b/src/server/game/DataStores/DB2Structure.h index 36acf283ef9..180960aec97 100644 --- a/src/server/game/DataStores/DB2Structure.h +++ b/src/server/game/DataStores/DB2Structure.h @@ -1728,7 +1728,7 @@ struct MapEntry bool IsContinent() const { - return ID == 0 || ID == 1 || ID == 530 || ID == 571 || ID == 870 || ID == 1116; + return ID == 0 || ID == 1 || ID == 530 || ID == 571 || ID == 870 || ID == 1116 || ID == 1220; } bool IsDynamicDifficultyMap() const { return (Flags[0] & MAP_FLAG_CAN_TOGGLE_DIFFICULTY) != 0; } |
