Merge pull request #40 from eXeC64/moderators

Moderators can now affect themselves
This commit is contained in:
Brett Flannigan 2011-09-26 18:08:47 -07:00
commit c3bbf05cf9
1 changed files with 5 additions and 1 deletions

View File

@ -227,7 +227,11 @@ public class FBaseCommand {
if (you.getRole().equals(Role.ADMIN)) {
i.sendMessage(Conf.colorSystem+"Only the faction admin can do that.");
} else if (i.getRole().equals(Role.MODERATOR)) {
i.sendMessage(Conf.colorSystem+"Moderators can't control each other...");
if ( i == you ) {
return true; //Moderators can control themselves
} else {
i.sendMessage(Conf.colorSystem+"Moderators can't control each other...");
}
} else {
i.sendMessage(Conf.colorSystem+"You must be a faction moderator to do that.");
}