// IRC user authorization check against prefixes
// Currently just for admin channel as first-order level of security
public boolean userAuthorized(String channel, String user) {
if (this.plugin.cChanAdmin(botId, channel))
try {
User check = this.getUser(user, channel);
if (this.plugin.isDebug()) {
CraftIRC.log.info(String.format(CraftIRC.NAME
+ " Minebot userAuthorized(): "
+ String.valueOf(check != null
&& this.plugin.cBotAdminPrefixes(botId).contains(getHighestUserPrefix(check)))));