mirror of
https://github.com/nikdoof/bukkitxmpp.git
synced 2025-12-14 10:02:16 +00:00
Fix issue with MC chat being fed back into MC
This commit is contained in:
@@ -153,7 +153,7 @@ public class BukkitXMPP extends JavaPlugin implements PacketListener {
|
|||||||
if (p instanceof Message) {
|
if (p instanceof Message) {
|
||||||
final Message message = (Message) p;
|
final Message message = (Message) p;
|
||||||
if(message.getType() == Message.Type.groupchat) {
|
if(message.getType() == Message.Type.groupchat) {
|
||||||
if(!StringUtils.parseResource(message.getFrom()).equalsIgnoreCase(nickname)) {
|
if(!StringUtils.parseResource(message.getFrom()).equalsIgnoreCase(conf.getString("connection.nickname", "MinecraftBot"))) {
|
||||||
String outmsg = ChatColor.GRAY + "[" + ChatColor.DARK_GREEN + "XMPP" + ChatColor.GRAY + "] " + ChatColor.WHITE + StringUtils.parseResource(message.getFrom()) + ": " + message.getBody();
|
String outmsg = ChatColor.GRAY + "[" + ChatColor.DARK_GREEN + "XMPP" + ChatColor.GRAY + "] " + ChatColor.WHITE + StringUtils.parseResource(message.getFrom()) + ": " + message.getBody();
|
||||||
sendMCMessage(outmsg);
|
sendMCMessage(outmsg);
|
||||||
log.info(outmsg);
|
log.info(outmsg);
|
||||||
|
|||||||
Reference in New Issue
Block a user