disable player scouter by default

This commit is contained in:
Ganom
2019-07-18 20:49:12 -04:00
committed by GitHub
parent 169d89002c
commit dcc4667a30

View File

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