|
@@ -1,13 +1,11 @@
|
|
|
package com.gmail.nossr50.chat;
|
|
|
|
|
|
-import org.bukkit.ChatColor;
|
|
|
import org.bukkit.entity.Player;
|
|
|
import org.bukkit.plugin.Plugin;
|
|
|
|
|
|
import com.gmail.nossr50.config.Config;
|
|
|
import com.gmail.nossr50.datatypes.party.Party;
|
|
|
import com.gmail.nossr50.events.chat.McMMOPartyChatEvent;
|
|
|
-import com.gmail.nossr50.locale.LocaleLoader;
|
|
|
|
|
|
public class PartyChatManager extends ChatManager {
|
|
|
private Party party;
|
|
@@ -28,9 +26,9 @@ public class PartyChatManager extends ChatManager {
|
|
|
@Override
|
|
|
protected void sendMessage() {
|
|
|
for (Player member : party.getOnlineMembers()) {
|
|
|
- member.sendMessage(LocaleLoader.getString("Commands.Party.Chat.Prefix", displayName) + message);
|
|
|
+ member.sendMessage(message);
|
|
|
}
|
|
|
|
|
|
- plugin.getLogger().info("[P](" + party.getName() + ")" + "<" + ChatColor.stripColor(displayName) + "> " + message);
|
|
|
+ plugin.getLogger().info("[P]<" + party.getName() + ">" + message);
|
|
|
}
|
|
|
}
|