diff options
Diffstat (limited to 'src/main/resources/config.yml')
| -rw-r--r-- | src/main/resources/config.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index b533b5fe..0d6e8fa5 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -174,6 +174,8 @@ options: override-errors: false # How many time (in seconds) plugin save placeholders placeholder-cache-time: 10 + # Whether or not the global task configuration will override per-task configuration settings + global-task-configuration-override: false # This switches up the entire quest system. # By enabling daily-quests, players will no longer be presented with the standard Quest GUI. @@ -188,6 +190,18 @@ options: daily-quests: enabled: false # <----- NOT YET IMPLEMENTED (THIS WILL NOT DO ANYTHING) +# The global task configuration will apply to the config of each task of a specified type in each quest. +# In the example below, every task with a type of "inventory" will have the config option "update-progress" +# set to true. This is useful if you do not want to go through each quest if you want to update the configuration +# for every task of a specific type. +# +# You must uncomment all below lines for the example to have any effect +# vvvvvvvvvvvvvvvvvvvvvvvvv +#global-task-configuration: +# types: +# inventory: +# update-progress: true + # Configure titles titles: quest-start: @@ -215,6 +229,7 @@ messages: quest-updater: "&cQuests > &7A new version &c{newver} &7was found on Spigot (your version: &c{oldver}&7). Please update me! <3 - Link: {link}" command-sub-doesntexist: "&7The specified subcommand '&c{sub}' &7does not exist." command-quest-start-doesntexist: "&7The specified quest '&c{quest}&7' does not exist." + command-quest-general-doesntexist: "&7The specified quest '&c{quest}&7' does not exist." command-category-open-disabled: "&7Categories are disabled." command-category-open-doesntexist: "&7The specified category '&c{category}&7' does not exist." command-quest-admin-playernotfound: "&7Player '&c{player}&7' could not be found." |
