xp and range fix

This commit is contained in:
2024-05-22 06:45:32 -05:00
parent 1d703b08a2
commit 8ab2805e39
+3 -1
View File
@@ -2920,10 +2920,12 @@ public class PlayerCharacter extends AbstractCharacter {
if(this.level > 75 && !fromPVP){
return;
} else{
xp *= 2;
}
if(GroupManager.getGroup(this) == null)
xp *= 2;
xp *= 1.9f;
// Stop players from getting experience past the cap
int levelCap = MBServerStatics.LEVELCAP;