mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2026-02-17 17:32:36 +01:00
12 lines
313 B
Java
12 lines
313 B
Java
public class other {
|
|
public static other gmsg;
|
|
|
|
public static other gmsg(String msg){
|
|
for (Player p : etc.getServer().getPlayerList()) {
|
|
if (p != null) {
|
|
p.sendMessage(msg);
|
|
}
|
|
}
|
|
return gmsg;
|
|
}
|
|
} |