quick (non-breaking) changes

This commit is contained in:
Lucca Faria Ferri 2023-01-26 08:20:55 -08:00
parent 6c41dc4c67
commit 98b6bf4d13
2 changed files with 2 additions and 2 deletions

View File

@ -1068,7 +1068,7 @@ namespace DiIiS_NA.GameServer.GSSystem.GameSystem
{
SyncedData = new GameSyncedData
{
GameSyncedFlags = IsSeasoned == true ? IsHardcore == true ? 6 : 6 : IsHardcore == true ? 4 : 4,
GameSyncedFlags = IsSeasoned ? IsHardcore ? 6 : 4 : IsHardcore == true ? 4 : 6,
Act = Math.Min(CurrentAct, 3000), //act id
InitialMonsterLevel = InitialMonsterLevel, //InitialMonsterLevel
MonsterLevel = 0x7044248F, //MonsterLevel

View File

@ -5129,7 +5129,7 @@ namespace DiIiS_NA.GameServer.GSSystem.PlayerSystem
}
else
{
Attributes[GameAttribute.Experience_Next_Lo] = Attributes[GameAttribute.Experience_Next_Lo] + (int)LevelBorders[Attributes[GameAttribute.Level]];
Attributes[GameAttribute.Experience_Next_Lo] += (int)LevelBorders[Attributes[GameAttribute.Level]];
Toon.ExperienceNext = Attributes[GameAttribute.Experience_Next_Lo];
}