Alts Can No Longer Be Promoted

This commit is contained in:
Driftay
2020-05-25 14:16:49 -04:00
parent 6f293dce17
commit 7f927189ea
6 changed files with 83 additions and 69 deletions

View File

@@ -74,6 +74,10 @@ public class FPromoteCommand extends FCommand {
}
}
if(target.isAlt()){
return;
}
// Don't allow people to demote people who already have the lowest rank.
if (current.value == 0 && relative <= 0) {
context.msg(TL.COMMAND_PROMOTE_LOWEST_RANK, target.getName());