Skip to content

Instantly share code, notes, and snippets.

@russjr08
Created December 11, 2013 19:44
Show Gist options
  • Save russjr08/7917073 to your computer and use it in GitHub Desktop.
Save russjr08/7917073 to your computer and use it in GitHub Desktop.
Check if there are any OPs are online.
public static boolean anyOpOnline(){
boolean anyPresent = false;
for(Player player : Bukkit.getPlayersOnline()){
if(player.isOp()){
anyPresent = true;
}
}
return anyPresent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment