mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2026-02-21 11:13:00 +01:00
Fixing irregularities with wordwrap. Removed the random nulls that appear.
This commit is contained in:
@@ -282,10 +282,10 @@ class PlayerList
|
||||
//Use: Finds if the specified player is in the ignore list
|
||||
//=====================================================================
|
||||
public boolean isIgnored(Player player){
|
||||
log.log(Level.INFO, String.valueOf(ignoreList.contains(player.getName())));
|
||||
for(String pl : ignoreList)
|
||||
log.log(Level.INFO, pl);
|
||||
return ignoreList.contains(player.getName());}
|
||||
return ignoreList.contains(player.getName());
|
||||
}
|
||||
|
||||
//=====================================================================
|
||||
//Function: addIgnore
|
||||
|
||||
Reference in New Issue
Block a user