From 1fe1b9ec8b5827c9164dc9ba2d04c026a855022c Mon Sep 17 00:00:00 2001 From: Mordred Date: Fri, 3 Dec 2021 22:28:34 +0100 Subject: [PATCH] Fixed common defs which could result in crashes --- src/common/Common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/Common.h b/src/common/Common.h index 32f1488e..01c43a38 100644 --- a/src/common/Common.h +++ b/src/common/Common.h @@ -21,11 +21,11 @@ namespace Sapphire::Common const int32_t INVALID_GAME_OBJECT_ID = 0xE0000000; const uint64_t INVALID_GAME_OBJECT_ID64 = 0xE0000000; - const uint16_t MAX_PLAYER_LEVEL = 80; + const uint16_t MAX_PLAYER_LEVEL = 60; const uint8_t CURRENT_EXPANSION_ID = 3; - const uint8_t CLASSJOB_TOTAL = 33; - const uint8_t CLASSJOB_SLOTS = 20; + const uint8_t CLASSJOB_TOTAL = 23; + const uint8_t CLASSJOB_SLOTS = 23; const uint8_t TOWN_COUNT = 6;