1
0
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:
cerevisiae
2010-12-08 18:30:26 -06:00
parent 861ef59334
commit ccee3b5d5c
3 changed files with 43 additions and 58 deletions

View File

@@ -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