diff --git a/src/main/java/com/onarandombox/MultiverseCore/configuration/ColorConfigProperty.java b/src/main/java/com/onarandombox/MultiverseCore/configuration/ColorConfigProperty.java index 554329b5..c01c4ffa 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/configuration/ColorConfigProperty.java +++ b/src/main/java/com/onarandombox/MultiverseCore/configuration/ColorConfigProperty.java @@ -49,6 +49,7 @@ public class ColorConfigProperty implements MVConfigProperty { return false; } this.value = value; + System.out.println(this.value.getText()); this.section.set(configNode, this.value.getText()); return true; } @@ -59,7 +60,7 @@ public class ColorConfigProperty implements MVConfigProperty { if (color == null) { return false; } - this.value = color; + this.setValue(color); return true; }