Core/DataStores: updated MAX_LEVEL to 100 as Cata Classic only provides game table data up to level 100 instead of 123

This commit is contained in:
Ovahlord
2024-09-14 17:05:51 +02:00
parent 63491678e2
commit 768e63ad1a

View File

@@ -48,7 +48,7 @@ enum LevelLimit
// client supported max level for player/pets/etc. Avoid overflow or client stability affected.
// also see GT_MAX_LEVEL define
MAX_LEVEL = 123,
MAX_LEVEL = 100,
// Server side limitation. Base at used code requirements.
// also see MAX_LEVEL and GT_MAX_LEVEL define