Fixed pets getting exp based on what their level is instead of the exp they received

This commit is contained in:
Teriuihi 2023-06-27 05:15:14 +02:00
parent 84e306f45f
commit ccc92e9da0

View File

@ -29,6 +29,6 @@ public class MyPetListener implements Listener {
return;
Booster booster = myPetBooster.get();
event.setExp(booster.useMultiplier(exp));
event.setExp(booster.useMultiplier(event.getExp()));
}
}