3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-07 00:22:51 +02:00

fix: Invalid yaml syntax of new config values

Follow up from 6839fa5567
Dieser Commit ist enthalten in:
NotMyFault 2021-10-09 17:22:16 +02:00
Ursprung 6839fa5567
Commit 99b45c13fb
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 158F5701A6AAD00C

Datei anzeigen

@ -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:",