Added some missing stuff for MB World (#61)

* Added some missing stuff for MB World

* Fix isExecutive method
This commit is contained in:
Nathan Curran
2018-05-15 16:11:24 +10:00
committed by Seth
parent 6853baebdd
commit 7b1a8cb527
3 changed files with 16 additions and 8 deletions

View File

@ -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)