From 5800c0bc966492a653b513d83742d8cebcd76133 Mon Sep 17 00:00:00 2001 From: Hannes Greule Date: Wed, 7 Oct 2020 15:32:05 +0200 Subject: [PATCH] Fix copypaste brush (#688) --- .../com/boydti/fawe/object/changeset/AbstractChangeSet.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worldedit-core/src/main/java/com/boydti/fawe/object/changeset/AbstractChangeSet.java b/worldedit-core/src/main/java/com/boydti/fawe/object/changeset/AbstractChangeSet.java index ee9b3b7c6..88d9a923d 100644 --- a/worldedit-core/src/main/java/com/boydti/fawe/object/changeset/AbstractChangeSet.java +++ b/worldedit-core/src/main/java/com/boydti/fawe/object/changeset/AbstractChangeSet.java @@ -303,8 +303,8 @@ public abstract class AbstractChangeSet implements ChangeSet, IBatchProcessor { MainUtil.setPosition(nbt, x, y, z); addTileCreate(nbt); } - int combinedFrom = from.getInternalId(); - int combinedTo = to.getInternalId(); + int combinedFrom = from.getOrdinal(); + int combinedTo = to.getOrdinal(); add(x, y, z, combinedFrom, combinedTo); } catch (Exception e) {