mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-07 03:11:02 +01:00
Fix colors not persisting through reloads
This commit is contained in:
parent
3c424c1c33
commit
8803374126
@ -49,6 +49,7 @@ public class ColorConfigProperty implements MVConfigProperty<EnglishChatColor> {
|
||||
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<EnglishChatColor> {
|
||||
if (color == null) {
|
||||
return false;
|
||||
}
|
||||
this.value = color;
|
||||
this.setValue(color);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user