mirror of
https://github.com/PikaMug/Quests.git
synced 2024-11-14 14:45:41 +01:00
Correct save order of rewards, part 2. Fixes #1137
This commit is contained in:
parent
7d5f7f5a70
commit
e27cd25c04
@ -1790,11 +1790,11 @@ public class QuestFactory implements ConversationAbandonedListener {
|
||||
private void saveRewards(ConversationContext context, ConfigurationSection section) {
|
||||
ConfigurationSection rews = section.createSection("rewards");
|
||||
rews.set("items", context.getSessionData(CK.REW_ITEMS) != null
|
||||
? (Integer) context.getSessionData(CK.REW_ITEMS) : null);
|
||||
? (List<ItemStack>) context.getSessionData(CK.REW_ITEMS) : null);
|
||||
rews.set("money", context.getSessionData(CK.REW_QUEST_POINTS) != null
|
||||
? (Integer) context.getSessionData(CK.REW_QUEST_POINTS) : null);
|
||||
rews.set("quest-points", context.getSessionData(CK.REW_MONEY) != null
|
||||
? (List<ItemStack>) context.getSessionData(CK.REW_MONEY) : null);
|
||||
? (Integer) context.getSessionData(CK.REW_MONEY) : null);
|
||||
rews.set("exp", context.getSessionData(CK.REW_EXP) != null
|
||||
? (Integer) context.getSessionData(CK.REW_EXP) : null);
|
||||
rews.set("commands", context.getSessionData(CK.REW_COMMAND) != null
|
||||
|
Loading…
Reference in New Issue
Block a user