public static boolean hasCartPerms(SignChangeActionEvent event){
Permission perm;
for (char cart : (event.getLine(2) + event.getLine(3)).toCharArray()) {
perm = minecartPerms.get(Character.toString(cart));
if (perm.handleMsg(event.getPlayer(), ChatColor.RED + "You do not have permission to create minecarts of this type")){
continue;
}
else{
return false;
}