Update Config authored by MarcatoSound's avatar MarcatoSound
...@@ -3,6 +3,8 @@ Mythic Dungeons comes with a default config that includes lots of comments to ex ...@@ -3,6 +3,8 @@ Mythic Dungeons comes with a default config that includes lots of comments to ex
#### Mythic Dungeons config.yml #### Mythic Dungeons config.yml
```yml ```yml
General: General:
# What plugin to use for the party system. Defaults to DungeonParties, which is provided by Mythic Dungeons.
PartyPlugin: DungeonParties
# The max number of instances that can be run on this server. # The max number of instances that can be run on this server.
MaxInstances: 10 MaxInstances: 10
# The interval between autosaves of the dungeon while in edit mode in seconds. 0 disables autosave. (NOT RECOMMENDED) # The interval between autosaves of the dungeon while in edit mode in seconds. 0 disables autosave. (NOT RECOMMENDED)
...@@ -10,7 +12,7 @@ General: ...@@ -10,7 +12,7 @@ General:
# What the function builder item's material is. Must be a valid Spigot material. # What the function builder item's material is. Must be a valid Spigot material.
# Useful if you have another plugin that also uses FEATHER for a tool, like goPaint # Useful if you have another plugin that also uses FEATHER for a tool, like goPaint
FunctionBuilderItem: FEATHER FunctionBuilderItem: FEATHER
# Whether or not the `/md stuck` command kills the player. # Whether the `/md stuck` command kills the player.
StuckKillsPlayer: false StuckKillsPlayer: false
# Whether only the party leader is allowed to start a dungeon for the party. # Whether only the party leader is allowed to start a dungeon for the party.
LeaderOnlyQueue: true LeaderOnlyQueue: true
...@@ -22,7 +24,7 @@ General: ...@@ -22,7 +24,7 @@ General:
# How long the ready check (from when a dungeon becomes available) will wait for all players to be ready. # How long the ready check (from when a dungeon becomes available) will wait for all players to be ready.
ReadyCheckTime: 45 ReadyCheckTime: 45
PartyFinder: PartyFinder:
# Whether to automatically broadcast the listening regularly. # Whether to automatically broadcast party recruitments regularly.
AutoBroadcast: true AutoBroadcast: true
# How many minutes there should be between each broadcast of a recruitment listing. # How many minutes there should be between each broadcast of a recruitment listing.
ListingBroadcastPeriod: 5 ListingBroadcastPeriod: 5
... ...
......