Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-08 04:20:06 +01:00
Fixed DefaultBlockParser incorrectly referencing disallowedBlocks
Dieser Commit ist enthalten in:
Ursprung
620308b2ba
Commit
6a3177f4e7
@ -259,7 +259,7 @@ public class DefaultBlockParser extends InputParser<BlockStateHolder> {
|
||||
if (context.isRestricted()) {
|
||||
Actor actor = context.requireActor();
|
||||
if (actor != null) {
|
||||
if (!actor.hasPermission("worldedit.anyblock") && worldEdit.getConfiguration().disallowedBlocks.contains(blockType.getId())) {
|
||||
if (!actor.hasPermission("worldedit.anyblock") && worldEdit.getConfiguration().disallowedBlocks.contains(blockType)) {
|
||||
throw new DisallowedUsageException("You are not allowed to use '" + input + "'");
|
||||
}
|
||||
if (nbt != null) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren