3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-23 02:28:02 +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: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({
"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:",