Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-26 11:00:04 +01:00
Update LegacyMapper.java
Dieser Commit ist enthalten in:
Ursprung
5d039c0e2b
Commit
2bd65f6423
@ -142,9 +142,11 @@ public final class LegacyMapper {
|
|||||||
stringToBlockMap.put(id, blockState);
|
stringToBlockMap.put(id, blockState);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
blockArr[combinedId] = blockState.getInternalId();
|
if (blockState != null) {
|
||||||
blockStateToLegacyId4Data.put(blockState.getInternalId(), (Integer) combinedId);
|
blockArr[combinedId] = blockState.getInternalId();
|
||||||
blockStateToLegacyId4Data.putIfAbsent(blockState.getInternalBlockTypeId(), combinedId);
|
blockStateToLegacyId4Data.put(blockState.getInternalId(), (Integer) combinedId);
|
||||||
|
blockStateToLegacyId4Data.putIfAbsent(blockState.getInternalBlockTypeId(), combinedId);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
for (int id = 0; id < 256; id++) {
|
for (int id = 0; id < 256; id++) {
|
||||||
int combinedId = id << 4;
|
int combinedId = id << 4;
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren