@@ -5955,7 +5955,7 @@ public final class L2PcInstance extends L2Playable
if (getExpBeforeDeath() > 0)
{
// Restore the specified % of lost experience.
- getStat().addExp((int)Math.round((getExpBeforeDeath() - getExp()) * restorePercent / 100));
+ getStat().addExp(Math.round((getExpBeforeDeath() - getExp()) * restorePercent / 100));
setExpBeforeDeath(0);
}