mirror of
https://github.com/EpicEricEE/ShopChest.git
synced 2024-11-25 12:06:16 +01:00
Remove config entries for external plugins
This commit is contained in:
parent
dbff06b082
commit
e09144b3fd
@ -42,29 +42,6 @@ public class Config {
|
|||||||
public static final Property<Boolean> ECONOMY_LOG_CLEANUP = new Property<>(Boolean.class, "economy_log", "cleanup", true);
|
public static final Property<Boolean> ECONOMY_LOG_CLEANUP = new Property<>(Boolean.class, "economy_log", "cleanup", true);
|
||||||
public static final Property<Integer> ECONOMY_LOG_CLEANUP_DAYS = new Property<>(Integer.class, "economy_log", "cleanup_days", 30);
|
public static final Property<Integer> ECONOMY_LOG_CLEANUP_DAYS = new Property<>(Integer.class, "economy_log", "cleanup_days", 30);
|
||||||
|
|
||||||
public static final Property<Boolean> PLUGINS_ENABLE_AREASHOP = new Property<>(Boolean.class, "plugins.enable", "areashop", true);
|
|
||||||
public static final Property<Boolean> PLUGINS_ENABLE_ASKYBLOCK = new Property<>(Boolean.class, "plugins.enable", "askyblock", true);
|
|
||||||
public static final Property<Boolean> PLUGINS_ENABLE_BENTOBOX = new Property<>(Boolean.class, "plugins.enable", "bentobox", true);
|
|
||||||
public static final Property<Boolean> PLUGINS_ENABLE_AUTHME = new Property<>(Boolean.class, "plugins.enable", "authme", true);
|
|
||||||
public static final Property<Boolean> PLUGINS_ENABLE_GRIEFPREVENTION = new Property<>(Boolean.class, "plugins.enable", "griefprevention", true);
|
|
||||||
public static final Property<Boolean> PLUGINS_ENABLE_ISLANDWORLD = new Property<>(Boolean.class, "plugins.enable", "islandworld", true);
|
|
||||||
public static final Property<Boolean> PLUGINS_ENABLE_PLOTSQUARED = new Property<>(Boolean.class, "plugins.enable", "plotsquared", true);
|
|
||||||
public static final Property<Boolean> PLUGINS_ENABLE_USKYBLOCK = new Property<>(Boolean.class, "plugins.enable", "uskyblock", true);
|
|
||||||
public static final Property<Boolean> PLUGINS_ENABLE_WORLDGUARD = new Property<>(Boolean.class, "plugins.enable", "worldguard", true);
|
|
||||||
|
|
||||||
public static final Property<Boolean> PLUGINS_AREASHOP_REMOVE_ON_DELETE = new Property<>(Boolean.class, "plugins.areashop", "remove_shops_on_delete", true);
|
|
||||||
public static final Property<Boolean> PLUGINS_AREASHOP_REMOVE_ON_UNRENT = new Property<>(Boolean.class, "plugins.areashop", "remove_shops_on_unrent", true);
|
|
||||||
public static final Property<Boolean> PLUGINS_AREASHOP_REMOVE_ON_RESELL = new Property<>(Boolean.class, "plugins.areashop", "remove_shops_on_resell", true);
|
|
||||||
public static final Property<Boolean> PLUGINS_AREASHOP_REMOVE_ON_SELL = new Property<>(Boolean.class, "plugins.areashop", "remove_shops_on_sell", true);
|
|
||||||
|
|
||||||
public static final Property<StringList> PLUGINS_TOWNY_PLOTS_FOR_RESIDENTS = new Property<>(StringList.class, "plugins.towny", "shop_plots_for_residents", new StringList("commercial"));
|
|
||||||
public static final Property<StringList> PLUGINS_TOWNY_PLOTS_FOR_MAYOR = new Property<>(StringList.class, "plugins.towny", "shop_plots_for_mayor", new StringList("commercial"));
|
|
||||||
public static final Property<StringList> PLUGINS_TOWNY_PLOTS_FOR_KING = new Property<>(StringList.class, "plugins.towny", "shop_plots_for_king", new StringList("commercial"));
|
|
||||||
|
|
||||||
public static final Property<Boolean> PLUGINS_WORLDGUARD_ALLOW_CREATE_SHOP = new Property<>(Boolean.class, "plugins.worldguard", "default_allow_create_shop", false);
|
|
||||||
public static final Property<Boolean> PLUGINS_WORLDGUARD_ALLOW_USE_SHOP = new Property<>(Boolean.class, "plugins.worldguard", "default_allow_use_shop", true);
|
|
||||||
public static final Property<Boolean> PLUGINS_WORLDGUARD_ALLOW_USE_ADMIN_SHOP = new Property<>(Boolean.class, "plugins.worldguard", "default_allow_use_admin_shop", true);
|
|
||||||
|
|
||||||
public static final Property<DatabaseType> DATABASE_TYPE = new Property<>(DatabaseType.class, "database", "type", DatabaseType.SQLITE);
|
public static final Property<DatabaseType> DATABASE_TYPE = new Property<>(DatabaseType.class, "database", "type", DatabaseType.SQLITE);
|
||||||
public static final Property<String> DATABASE_TABLE_PREFIX = new Property<>(String.class, "database", "table_prefix", "shopchest_");
|
public static final Property<String> DATABASE_TABLE_PREFIX = new Property<>(String.class, "database", "table_prefix", "shopchest_");
|
||||||
public static final Property<String> DATABASE_MYSQL_HOSTNAME = new Property<>(String.class, "database.mysql", "hostname", "");
|
public static final Property<String> DATABASE_MYSQL_HOSTNAME = new Property<>(String.class, "database.mysql", "hostname", "");
|
||||||
|
@ -36,29 +36,6 @@ economy_log.enable=true
|
|||||||
economy_log.cleanup=true
|
economy_log.cleanup=true
|
||||||
economy_log.cleanup_days=30
|
economy_log.cleanup_days=30
|
||||||
|
|
||||||
plugins.enable.areashop=true
|
|
||||||
plugins.enable.askyblock=true
|
|
||||||
plugins.enable.bentobox=true
|
|
||||||
plugins.enable.authme=true
|
|
||||||
plugins.enable.griefprevention=true
|
|
||||||
plugins.enable.islandworld=true
|
|
||||||
plugins.enable.plotsquared=true
|
|
||||||
plugins.enable.uskyblock=true
|
|
||||||
plugins.enable.worldguard=true
|
|
||||||
|
|
||||||
plugins.worldguard.default_allow_create_shop=false
|
|
||||||
plugins.worldguard.default_allow_use_shop=true
|
|
||||||
plugins.worldguard.default_allow_use_admin_shop=true
|
|
||||||
|
|
||||||
plugins.areashop.remove_shops_on_delete=true
|
|
||||||
plugins.areashop.remove_shops_on_unrent=true
|
|
||||||
plugins.areashop.remove_shops_on_resell=true
|
|
||||||
plugins.areashop.remove_shops_on_sell=true
|
|
||||||
|
|
||||||
plugins.towny.shop_plots_for_residents=commercial
|
|
||||||
plugins.towny.shop_plots_for_mayor=commercial
|
|
||||||
plugins.towny.shop_plots_for_king=commercial
|
|
||||||
|
|
||||||
database.type=sqlite
|
database.type=sqlite
|
||||||
database.table_prefix=shopchest_
|
database.table_prefix=shopchest_
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user