1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-17 20:11:21 +02:00

[trunk] fix none ops colour option

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1354 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
ementalo
2011-05-06 20:19:44 +00:00
parent 0fb3d15d8a
commit dbf85f2bcf

View File

@@ -156,6 +156,8 @@ public class Settings implements IConf
if (colorName == null) if (colorName == null)
return ChatColor.RED; return ChatColor.RED;
if("none".equalsIgnoreCase(colorName))
return ChatColor.WHITE;
try try
{ {