Skip to content

Commit

Permalink
Fixed Config updating messing up String settings with quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
AuroraLS3 committed Dec 13, 2018
1 parent 3ae40e4 commit 2e44b67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void apply(Config config) {
ConfigNode newNode = config.getConfigNode(newPath);
ConfigNode oldNode = config.getConfigNode(oldPath);
newNode.copyDefaults(oldNode);
newNode.set(oldNode.getValue());
newNode.set(oldNode.getString());
}

@Override
Expand Down

0 comments on commit 2e44b67

Please sign in to comment.