Add a check for punishment removal permission

This commit is contained in:
Alexander Meech 2016-12-06 20:52:49 -05:00 committed by cnr
parent 609d77a4f2
commit 3af0fe3bee
1 changed files with 4 additions and 1 deletions

View File

@ -23,6 +23,9 @@ public class RemovePunishmentButton implements IButton
@Override
public void onClick(Player player, ClickType clickType)
{
_punishPage.RemovePunishment(_punishment, _item);
if (_punishPage.canUnban(true))
{
_punishPage.RemovePunishment(_punishment, _item);
}
}
}