mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-27 01:05:38 +00:00
Fixed FS-93
- Players no longer need to relog, just need to be opped to get permissions. - Removed redundant PlayerJoinEvent code as it's already been executed (See RankManager class).
This commit is contained in:
parent
b9c1970d20
commit
eb05b05042
@ -40,6 +40,7 @@ public class Command_deop extends FreedomCommand
|
|||||||
matchedPlayerNames.add(player.getName());
|
matchedPlayerNames.add(player.getName());
|
||||||
player.setOp(false);
|
player.setOp(false);
|
||||||
player.sendMessage(FreedomCommand.YOU_ARE_NOT_OP);
|
player.sendMessage(FreedomCommand.YOU_ARE_NOT_OP);
|
||||||
|
plugin.rm.updateDisplay(player);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,7 @@ public class Command_deopall extends FreedomCommand
|
|||||||
{
|
{
|
||||||
player.setOp(false);
|
player.setOp(false);
|
||||||
player.sendMessage(FreedomCommand.YOU_ARE_NOT_OP);
|
player.sendMessage(FreedomCommand.YOU_ARE_NOT_OP);
|
||||||
|
plugin.rm.updateDisplay(player);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
@ -117,10 +117,4 @@ public class PermissionManager extends FreedomService
|
|||||||
setPermissions(player);
|
setPermissions(player);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler(priority = EventPriority.NORMAL)
|
|
||||||
public void onPlayerJoin(PlayerJoinEvent event)
|
|
||||||
{
|
|
||||||
setPermissions(event.getPlayer());
|
|
||||||
}
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user