1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-10-02 17:16:59 +02:00

2nd sweep over Essentials Chat, to implement 2.8 changes.

Formatting cache still needs reimplemented.
This commit is contained in:
KHobbits
2012-01-24 23:20:00 +00:00
parent 38a9327284
commit df061749dd
6 changed files with 34 additions and 36 deletions

View File

@@ -10,7 +10,6 @@ public class ChatStore
private final transient IUser user;
private final transient String type;
private final transient Trade charge;
private long radius;
public ChatStore(final IEssentials ess, final IUser user, final String type)
{
@@ -38,14 +37,4 @@ public class ChatStore
{
return type.length() > 0 ? "chat" : "chat-" + type;
}
public long getRadius()
{
return radius;
}
public void setRadius(final long radius)
{
this.radius = radius;
}
}