diff options
| author | Vincent-Michael <Vincent_Michael@gmx.de> | 2015-04-10 18:10:52 +0200 |
|---|---|---|
| committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2015-04-10 18:16:00 +0200 |
| commit | 653954c14d6136295691e18d7e21918d46d0761f (patch) | |
| tree | e842dec20cb3c73968ee65151c6c9176d12f3df3 /src/server/shared/Common.h | |
| parent | 38def5969a3e3c7aa07f9ab6fdad0103ef265b21 (diff) | |
Core/Misc:
- Update LocaleConstant enum
- Update Quest locale system for WoD
- Fix some rnd typo in quest template
Diffstat (limited to 'src/server/shared/Common.h')
| -rw-r--r-- | src/server/shared/Common.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/server/shared/Common.h b/src/server/shared/Common.h index 4c5773d5eb5..11c9ad3b27f 100644 --- a/src/server/shared/Common.h +++ b/src/server/shared/Common.h @@ -114,13 +114,18 @@ enum LocaleConstant LOCALE_zhTW = 5, LOCALE_esES = 6, LOCALE_esMX = 7, - LOCALE_ruRU = 8 + LOCALE_ruRU = 8, + LOCALE_none = 9, + LOCALE_ptBR = 10, + LOCALE_itIT = 11, + + TOTAL_LOCALES }; -const uint8 TOTAL_LOCALES = 9; +const uint8 OLD_TOTAL_LOCALES = 9; /// @todo convert in simple system #define DEFAULT_LOCALE LOCALE_enUS -#define MAX_LOCALES 8 +#define MAX_LOCALES 11 extern char const* localeNames[TOTAL_LOCALES]; |
