playerscouter: Null check (#1902)

playerscouter: Null check
This commit is contained in:
Owain van Brakel
2019-11-07 09:32:17 +01:00
committed by GitHub

View File

@@ -182,7 +182,7 @@ public class PlayerScouter extends Plugin
resetBlacklist();
if (!checkWildy() || playerContainer.isEmpty())
if (!checkWildy() || playerContainer.isEmpty() || this.webhook == null)
{
return;
}