3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-16 04:51:22 +02:00

Fix copypaste brush (#688)

Dieser Commit ist enthalten in:
Hannes Greule 2020-10-07 15:32:05 +02:00 committet von GitHub
Ursprung f71ca32140
Commit 5800c0bc96
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

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