From 11c15a5ebe5f1ee163eaa2af4ee583fef8b51f26 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Sun, 7 Feb 2016 13:40:50 +0000 Subject: [PATCH] Variable exp of addExpAndSp set to long. --- trunk/java/com/l2jmobius/gameserver/model/quest/QuestState.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/java/com/l2jmobius/gameserver/model/quest/QuestState.java b/trunk/java/com/l2jmobius/gameserver/model/quest/QuestState.java index 686aa25fc4..30233706ee 100644 --- a/trunk/java/com/l2jmobius/gameserver/model/quest/QuestState.java +++ b/trunk/java/com/l2jmobius/gameserver/model/quest/QuestState.java @@ -824,7 +824,7 @@ public final class QuestState * @param exp * @param sp */ - public void addExpAndSp(int exp, int sp) + public void addExpAndSp(long exp, int sp) { AbstractScript.addExpAndSp(_player, exp, sp); PcCafePointsManager.getInstance().givePcCafePoint(getPlayer(), (long) (exp * Config.RATE_QUEST_REWARD_XP));