Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-20 06:50:08 +01:00
Handle new entity pose from 21w13a
Dieser Commit ist enthalten in:
Ursprung
e9fa5b49ca
Commit
00b8289c61
@ -49,6 +49,12 @@ public class MetadataRewriter1_17To1_16_4 extends MetadataRewriter {
|
|||||||
metadata.setValue(protocol.getMappingData().getNewBlockStateId(data));
|
metadata.setValue(protocol.getMappingData().getNewBlockStateId(data));
|
||||||
} else if (metadata.getMetaType() == MetaType1_17.PARTICLE) {
|
} else if (metadata.getMetaType() == MetaType1_17.PARTICLE) {
|
||||||
rewriteParticle((Particle) metadata.getValue());
|
rewriteParticle((Particle) metadata.getValue());
|
||||||
|
} else if (metadata.getMetaType() == MetaType1_17.Pose) {
|
||||||
|
int pose = metadata.getCastedValue();
|
||||||
|
if (pose > 5) {
|
||||||
|
// Added LONG_JUMP at 6
|
||||||
|
metadata.setValue(pose + 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (type == null) return;
|
if (type == null) return;
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren