mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 19:50:38 +00:00
Fixes #584
This commit is contained in:
parent
fb0b50218d
commit
3662b05da8
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
package com.intellectualcrafters.plot.object;
|
package com.intellectualcrafters.plot.object;
|
||||||
|
|
||||||
|
import com.intellectualcrafters.plot.config.C;
|
||||||
import com.intellectualcrafters.plot.util.ChatManager;
|
import com.intellectualcrafters.plot.util.ChatManager;
|
||||||
|
|
||||||
public class PlotMessage {
|
public class PlotMessage {
|
||||||
|
@ -44,7 +45,7 @@ public class PlotMessage {
|
||||||
}
|
}
|
||||||
|
|
||||||
public PlotMessage color(String color) {
|
public PlotMessage color(String color) {
|
||||||
ChatManager.manager.color(this, color);
|
ChatManager.manager.color(this, C.color(color));
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue