Adds comments to every option in strings.yml

This commit is contained in:
2023-11-16 22:51:20 +01:00
parent 4282cd8a2f
commit 11d8c74a26
5 changed files with 62 additions and 8 deletions

View File

@ -34,6 +34,11 @@ public abstract class EditCommand<K extends CustomTrait<L>, L extends Setting> i
protected final Class<K> traitClass;
/**
* Instantiates a new edit command
*
* @param traitClass <p>The type of trait this command edits</p>
*/
public EditCommand(Class<K> traitClass) {
this.traitClass = traitClass;
}

View File

@ -94,7 +94,7 @@ public enum ScrapperSetting implements Setting {
*/
TOO_DAMAGED_FOR_SALVAGE_MESSAGE("messages.tooDamagedForSalvageMessage", SettingValueType.STRING,
"&cThat item is too damaged to be salvaged into anything useful",
"tooDamagedForSalvageMessage", "The message to display if reforging the player's " +
"tooDamagedForSalvageMessage", "The message to display if salvaging the player's " +
"item would result in no salvage", true, true),
/**