From a5cf42984b2b805c1a7272ff9e4e05ecf73a4be0 Mon Sep 17 00:00:00 2001 From: Pim van der Loos Date: Wed, 10 Mar 2021 15:47:36 +0100 Subject: [PATCH] Remove config.yml - Removed the config.yml file. It hasn't been in use for a long time and its contents were heavily outdated. Closes #1 --- pom.xml | 1 - src/main/resources/config.yml | 58 ----------------------------------- 2 files changed, 59 deletions(-) delete mode 100644 src/main/resources/config.yml diff --git a/pom.xml b/pom.xml index a4101ec..acea152 100644 --- a/pom.xml +++ b/pom.xml @@ -54,7 +54,6 @@ true plugin.yml - config.yml en_US.txt diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml deleted file mode 100644 index 690be84..0000000 --- a/src/main/resources/config.yml +++ /dev/null @@ -1,58 +0,0 @@ - -# Setting this to true will cause armored elytras to be unbreakable. -unbreakable: false - -# Amount of items it takes to fully repair an armored elytra -# Repair cost for every tier of armored elytra in number of items to repair 100%. -leatherRepair: 6 -goldRepair: 5 -ironRepair: 4 -diamondsRepair: 3 - -# Name for every tier: -leather: -gold: -chain: -iron: -diamond: - -# List of enchantments that are allowed to be put on an armored elytra. -# If you do not want to allow any enchantments, remove them all and add "NONE" -# You can find supported enchantments here: -# https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html -allowedEnchantments: -# - NONE - - DURABILITY - - PROTECTION_FIRE - - PROTECTION_EXPLOSIONS - - PROTECTION_PROJECTILE - - PROTECTION_ENVIRONMENTAL - - THORNS - - BINDING_CURSE - - VANISHING_CURSE - -# Message players receive when they lack the required permissions to wear a certain armor tier. "NONE" = no message. -# %ARMOR_TIER% is replaced by the name of the armor tier. -usageDeniedMessage: 'You do not have the required permissions to wear %ARMOR_TIER%!' - -# Message players receive when they are given an armored elytra using commands. "NONE" = no message. -# %ARMOR_TIER% is replaced by the name of the armor tier. -elytraReceivedMessage: '&2A(n) %ARMOR_TIER% has been bestowed upon you!' - -# The name of armored elytras. %ARMOR_TIER% is replaced by the name of the armor tier. -elytraName: '%ARMOR_TIER%' - -# The lore of armored elytras. "NONE" = no lore. %ARMOR_TIER% is replaced by the name of the armor tier. -elytraLore: 'Elytra with %ARMOR_TIER% level protection' - -# Allow this plugin to check for updates on startup. It will not download new versions! -checkForUpdates: true - -# Allow this plugin to send (anonymised) stats using bStats. -allowStats: true - -# Setting this to true will disable this plugin and remove any armored elytras it can find. -# It will check player's inventories and their end chest upon login and any regular chest when it is opened. -# This means it will take a while for all armored elytras to be removed from your server, but it doesn't take up -# a lot of resources, so you can just leave it installed and ignore it. -uninstall: false \ No newline at end of file