fix: use correct string for disallowed property use

Dieser Commit ist enthalten in:
dordsor21 2023-03-22 17:28:50 +00:00
Ursprung eb1c9dc4db
Commit d82bf0527e
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 1E53E88969FFCF0B

Datei anzeigen

@ -207,7 +207,7 @@ public class DefaultBlockParser extends InputParser<BaseBlock> {
}).collect(Collectors.toSet()); }).collect(Collectors.toSet());
if (!blocked.isEmpty()) { if (!blocked.isEmpty()) {
throw new DisallowedUsageException(Caption.of( throw new DisallowedUsageException(Caption.of(
"fawe.error.limit.disallowed-block", "fawe.error.limit.disallowed-property",
TextComponent.of(input) TextComponent.of(input)
)); ));
} }