Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-12-27 16:40:10 +01:00
Ursprung
18c4f90cb0
Commit
4c34ced240
@ -151,9 +151,9 @@ public class BlockRewriter<C extends ClientboundPacketType> {
|
|||||||
handler(wrapper -> {
|
handler(wrapper -> {
|
||||||
int id = wrapper.get(Type.INT, 0);
|
int id = wrapper.get(Type.INT, 0);
|
||||||
int data = wrapper.get(Type.INT, 1);
|
int data = wrapper.get(Type.INT, 1);
|
||||||
if (id == playRecordId) { // Play record
|
if (id == playRecordId && protocol.getMappingData().getItemMappings() != null) {
|
||||||
wrapper.set(Type.INT, 1, protocol.getMappingData().getNewItemId(data));
|
wrapper.set(Type.INT, 1, protocol.getMappingData().getNewItemId(data));
|
||||||
} else if (id == blockBreakId) { // Block break + block break sound
|
} else if (id == blockBreakId && protocol.getMappingData().getBlockStateMappings() != null) {
|
||||||
wrapper.set(Type.INT, 1, protocol.getMappingData().getNewBlockStateId(data));
|
wrapper.set(Type.INT, 1, protocol.getMappingData().getNewBlockStateId(data));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren