Merge pull request #1034 from runelite-extended/scout-pout

playerscouter: disable it by default.
This commit is contained in:
Tyler Bochard
2019-07-18 22:28:22 -04:00
committed by GitHub

View File

@@ -69,7 +69,8 @@ import okhttp3.HttpUrl;
@PluginDescriptor(
name = "Player Scouter",
description = "Scout players and output them to your discord channel!",
type = PluginType.PVP
type = PluginType.PVP,
enabledByDefault = false
)
@Slf4j
public class PlayerScouter extends Plugin
@@ -331,4 +332,4 @@ public class PlayerScouter extends Plugin
}
return client.getVar(Varbits.IN_WILDERNESS) == 1 || WorldType.isPvpWorld(client.getWorldType());
}
}
}