Correct improper loading of Parties experiences, fixes #1657

This commit is contained in:
PikaMug 2021-03-20 23:03:05 -04:00
parent 09cf625a8a
commit 1cf01b88b5

View File

@ -252,7 +252,7 @@ public class QuestFactory implements ConversationAbandonedListener {
context.setSessionData(CK.REW_HEROES_AMOUNTS, rews.getHeroesAmounts()); context.setSessionData(CK.REW_HEROES_AMOUNTS, rews.getHeroesAmounts());
} }
if (rews.getPartiesExperience() != 0) { if (rews.getPartiesExperience() != 0) {
context.setSessionData(CK.REW_PARTIES_EXPERIENCE, rews.getPhatLoots()); context.setSessionData(CK.REW_PARTIES_EXPERIENCE, rews.getPartiesExperience());
} }
if (rews.getPhatLoots().isEmpty() == false) { if (rews.getPhatLoots().isEmpty() == false) {
context.setSessionData(CK.REW_PHAT_LOOTS, rews.getPhatLoots()); context.setSessionData(CK.REW_PHAT_LOOTS, rews.getPhatLoots());