Fixed DefaultBlockParser incorrectly referencing disallowedBlocks

This commit is contained in:
BuildTools 2018-10-02 07:32:24 -04:00
parent 620308b2ba
commit 6a3177f4e7

View File

@ -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) {