Updated the config header to talk about the ability to reload config

This commit is contained in:
Florian CUNY 2019-02-21 20:34:31 +01:00
parent 29c7adec44
commit e7b2a6ed39

View File

@ -18,9 +18,9 @@ import world.bentobox.bentobox.managers.RanksManager;
*/
@StoreAt(filename="config.yml") // Explicitly call out what name this should have.
@ConfigComment("BentoBox Configuration [version]")
@ConfigComment("This config file is dynamic and saved when the server is shutdown.")
@ConfigComment("You cannot edit it while the server is running because changes will")
@ConfigComment("be lost! Use in-game settings GUI or edit when server is offline.")
@ConfigComment("This config file is dynamic and is updated right after BentoBox loaded its settings from it.")
@ConfigComment("You can edit it while the server is online and you can do '/bbox reload' to take the changes into account.")
@ConfigComment("However, it is a better practice to edit this file while the server is offline.")
public class Settings implements DataObject {
// ---------------------------------------------