Merge pull request #881 from Kyleeld/flexo

disable flexo by default
This commit is contained in:
Tyler Bochard
2019-07-05 01:50:09 -04:00
committed by GitHub
3 changed files with 4 additions and 3 deletions

View File

@@ -73,7 +73,7 @@ public interface RuneLiteConfig extends Config
) )
default boolean enablePlugins() default boolean enablePlugins()
{ {
return true; return false;
} }
@ConfigItem( @ConfigItem(

View File

@@ -67,7 +67,8 @@ import net.runelite.client.ui.overlay.OverlayManager;
name = "Flexo Config", name = "Flexo Config",
description = "Customizes the flexo api", description = "Customizes the flexo api",
tags = {"flexo", "null"}, tags = {"flexo", "null"},
type = PluginType.UTILITY type = PluginType.EXTERNAL,
enabledByDefault = false
) )
public class FlexoPlugin extends Plugin public class FlexoPlugin extends Plugin

View File

@@ -55,7 +55,7 @@ import net.runelite.client.ui.ClientUI;
hidden = true, // prevent users from disabling hidden = true, // prevent users from disabling
name = "RuneLitePlus", name = "RuneLitePlus",
description = "Configures various aspects of RuneLitePlus", description = "Configures various aspects of RuneLitePlus",
type = PluginType.EXTERNAL type = PluginType.UTILITY
) )
@Singleton @Singleton
@Slf4j @Slf4j