Fix direction changes for //undo (#2972)

This commit is contained in:
Hannes Greule
2024-11-04 12:20:51 +01:00
committed by GitHub
parent 44f7b63fb1
commit 9eafbf1c26

View File

@ -817,6 +817,7 @@ public abstract class FaweStreamChangeSet extends AbstractChangeSet {
@Override @Override
protected void write(final MutableTileChange change, final CompoundTag tag) { protected void write(final MutableTileChange change, final CompoundTag tag) {
change.tag = tag; change.tag = tag;
change.create = create;
} }
@Override @Override
@ -845,6 +846,7 @@ public abstract class FaweStreamChangeSet extends AbstractChangeSet {
@Override @Override
protected void write(final MutableEntityChange change, final CompoundTag tag) { protected void write(final MutableEntityChange change, final CompoundTag tag) {
change.tag = tag; change.tag = tag;
change.create = create;
} }
@Override @Override