fix: Invalid yaml syntax of new config values

Follow up from 6839fa5567
This commit is contained in:
NotMyFault 2021-10-09 17:22:16 +02:00
parent 6839fa5567
commit 99b45c13fb
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C

View File

@ -217,7 +217,7 @@ public class Settings extends Config {
" - \"minecraft:piston[extended=false,facing=west]\"", " - \"minecraft:piston[extended=false,facing=west]\"",
" - \"minecraft:wheat[age=7]\"" " - \"minecraft:wheat[age=7]\""
}) })
public List<String> DISALLOWED_BLOCKS = Arrays.asList("\"minecraft:wheat\"", "\"minecraft:fire\"", "\"minecraft:redstone_wire\""); public List<String> DISALLOWED_BLOCKS = Arrays.asList("minecraft:wheat", "minecraft:fire", "minecraft:redstone_wire");
@Comment({ @Comment({
"List of block properties that should be remapped if used in an edit. Entries should take the form", "List of block properties that should be remapped if used in an edit. Entries should take the form",
"\"property_name[value1_old:value1_new,value2_old:value2_new]\". For example:", "\"property_name[value1_old:value1_new,value2_old:value2_new]\". For example:",