Fix copypaste brush (#688)

This commit is contained in:
Hannes Greule
2020-10-07 15:32:05 +02:00
committed by GitHub
parent f71ca32140
commit 5800c0bc96

View File

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