From 691a0ef4ce21b66cd948dc234d8659b8f8a422db Mon Sep 17 00:00:00 2001 From: KHobbits Date: Thu, 9 Feb 2012 02:11:36 +0000 Subject: Fixing silly typo - Fixes shout costs. --- EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'EssentialsChat/src') diff --git a/EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java b/EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java index 38239abfe..d353d5d6c 100644 --- a/EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java +++ b/EssentialsChat/src/com/earth2me/essentials/chat/ChatStore.java @@ -36,7 +36,7 @@ public class ChatStore public String getLongType() { - return type.length() > 0 ? "chat" : "chat-" + type; + return type.length() == 0 ? "chat" : "chat-" + type; } public long getRadius() -- cgit v1.2.3