summaryrefslogtreecommitdiffstats
path: root/src/main/java
diff options
context:
space:
mode:
authornicuch <nicuch100@gmail.com>2020-01-11 20:42:33 +0200
committernicuch <nicuch100@gmail.com>2020-01-11 20:42:33 +0200
commit585e5362b860cc38fd47321272b241d5f774ffd7 (patch)
tree3aa652e571de308878bf41a5635f7a30f52a7ecc /src/main/java
parent6eeec6e7dcaf9456e1d1cd24d26cb1727d8e3d5f (diff)
Don't clear the data.
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/com/leonardobishop/quests/player/questprogressfile/QuestProgressFile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/leonardobishop/quests/player/questprogressfile/QuestProgressFile.java b/src/main/java/com/leonardobishop/quests/player/questprogressfile/QuestProgressFile.java
index 55bc8ff3..043deadf 100644
--- a/src/main/java/com/leonardobishop/quests/player/questprogressfile/QuestProgressFile.java
+++ b/src/main/java/com/leonardobishop/quests/player/questprogressfile/QuestProgressFile.java
@@ -286,7 +286,7 @@ public class QuestProgressFile {
}
YamlConfiguration data = YamlConfiguration.loadConfiguration(file);
- data.set("quest-progress", null);
+ //data.set("quest-progress", null);
for (QuestProgress questProgress : questProgress.values()) {
if (!questProgress.isWorthSaving()) {
continue;