mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Fix base exp being off by 1
This commit is contained in:
parent
f6104812a5
commit
ee1f4b0888
@ -762,7 +762,7 @@ namespace FFXIVClassic_Map_Server.actors.chara.ai.utils
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
int baseLevel = Math.Min(player.GetLevel(), mob.GetLevel());
|
int baseLevel = Math.Min(player.GetLevel(), mob.GetLevel());
|
||||||
ushort baseEXP = BASEEXP[baseLevel];
|
ushort baseEXP = BASEEXP[baseLevel - 1];
|
||||||
|
|
||||||
double dlvlModifier = 1.0;
|
double dlvlModifier = 1.0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user