mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-23 13:17:45 +00:00
Fix base exp being off by 1
This commit is contained in:
parent
f6104812a5
commit
ee1f4b0888
1 changed files with 1 additions and 1 deletions
|
@ -762,7 +762,7 @@ namespace FFXIVClassic_Map_Server.actors.chara.ai.utils
|
|||
return 0;
|
||||
|
||||
int baseLevel = Math.Min(player.GetLevel(), mob.GetLevel());
|
||||
ushort baseEXP = BASEEXP[baseLevel];
|
||||
ushort baseEXP = BASEEXP[baseLevel - 1];
|
||||
|
||||
double dlvlModifier = 1.0;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue