mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-04 11:35:45 +00:00
added Plot API class
This commit is contained in:
parent
890be085ae
commit
86f3b993a6
5 changed files with 688 additions and 1 deletions
|
@ -879,6 +879,14 @@ public class MainUtil {
|
|||
}
|
||||
return new String(b);
|
||||
}
|
||||
|
||||
public static void sendConsoleMessage(String msg) {
|
||||
sendMessage(null, msg);
|
||||
}
|
||||
|
||||
public static void sendConsoleMessage(C caption, String... args) {
|
||||
sendMessage(null, caption, args);
|
||||
}
|
||||
|
||||
public static boolean sendMessage(final PlotPlayer plr, String msg, final boolean prefix) {
|
||||
msg = colorise('&', msg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue