mirror of
https://github.com/TotalFreedomMC/TotalFreedomMod.git
synced 2025-08-06 20:42:57 +00:00
Added some missing stuff for MB World (#61)
* Added some missing stuff for MB World * Fix isExecutive method
This commit is contained in:
parent
6853baebdd
commit
7b1a8cb527
3 changed files with 16 additions and 8 deletions
|
@ -81,7 +81,7 @@ public class FUtil
|
|||
|
||||
public static boolean isExecutive(String name)
|
||||
{
|
||||
return (ConfigEntry.SERVER_OWNERS.getList().contains(name) || ConfigEntry.SERVER_EXECUTIVES.getList().contains(name));
|
||||
return ConfigEntry.SERVER_OWNERS.getStringList().contains(name) || ConfigEntry.SERVER_EXECUTIVES.getStringList().contains(name);
|
||||
}
|
||||
|
||||
public static void bcastMsg(String message, ChatColor color)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue