Skip to content

Commit

Permalink
Made disabled plugins show up in red in the plugins list. Thanks Yeta…
Browse files Browse the repository at this point in the history
…notherx!
  • Loading branch information
EvilSeph committed May 16, 2011
1 parent 5709858 commit 86ca0f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/bukkit/command/SimpleCommandMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ private String getPluginList() {
pluginList.append(", ");
}

pluginList.append(ChatColor.GREEN);
pluginList.append(plugin.isEnabled() ? ChatColor.GREEN : ChatColor.RED);
pluginList.append(plugin.getDescription().getName());
}

Expand Down

0 comments on commit 86ca0f5

Please sign in to comment.