diff options
| author | nicuch <nicuch100@gmail.com> | 2020-01-11 20:42:33 +0200 |
|---|---|---|
| committer | nicuch <nicuch100@gmail.com> | 2020-01-11 20:42:33 +0200 |
| commit | 585e5362b860cc38fd47321272b241d5f774ffd7 (patch) | |
| tree | 3aa652e571de308878bf41a5635f7a30f52a7ecc /src/main/java/com/leonardobishop | |
| parent | 6eeec6e7dcaf9456e1d1cd24d26cb1727d8e3d5f (diff) | |
Don't clear the data.
Diffstat (limited to 'src/main/java/com/leonardobishop')
| -rw-r--r-- | src/main/java/com/leonardobishop/quests/player/questprogressfile/QuestProgressFile.java | 2 |
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; |
