Implement plugin-support check for join/quit messages
This commit is contained in:
@@ -201,7 +201,7 @@ public class TelegramChat extends JavaPlugin implements Listener {
|
||||
if (!this.getConfig().getBoolean("enable-joinquitmessages"))
|
||||
return;
|
||||
|
||||
if(VanishAPI.isInvisible(e.getPlayer()))
|
||||
if(isSuperVanish && VanishAPI.isInvisible(e.getPlayer()))
|
||||
return;
|
||||
|
||||
if (telegramHook.connected) {
|
||||
@@ -229,7 +229,7 @@ public class TelegramChat extends JavaPlugin implements Listener {
|
||||
if (!this.getConfig().getBoolean("enable-joinquitmessages"))
|
||||
return;
|
||||
|
||||
if(VanishAPI.isInvisible(e.getPlayer()))
|
||||
if(isSuperVanish && VanishAPI.isInvisible(e.getPlayer()))
|
||||
return;
|
||||
|
||||
if (telegramHook.connected) {
|
||||
|
||||
Reference in New Issue
Block a user