Ver Fonte

added isCancelled() method

mastercake10 há 6 anos atrás
pai
commit
44725de1f5
1 ficheiros alterados com 3 adições e 2 exclusões
  1. 3 2
      src/main/java/de/Linus122/TelegramChat/Telegram.java

+ 3 - 2
src/main/java/de/Linus122/TelegramChat/Telegram.java

@@ -108,8 +108,9 @@ public class Telegram {
 									for (TelegramActionListener actionListener : listeners) {
 										actionListener.onSendToMinecraft(chatMsg);
 									}
-
-									Main.sendToMC(chatMsg);
+									if(!chatMsg.isCancelled()){
+										Main.sendToMC(chatMsg);
+									}
 								} else {
 									this.sendMsg(chat.getId(), Utils.formatMSG("need-to-link")[0]);
 								}