Fixing silly typo - Fixes shout costs.

This commit is contained in:
KHobbits 2012-02-09 02:11:36 +00:00
parent 86a1dda46c
commit 691a0ef4ce
1 changed files with 1 additions and 1 deletions

View File

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