Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-16 04:50:08 +01:00
Fix double remapping of area effect cloud particle in 1.20.2->.3
Fixes #4042
Dieser Commit ist enthalten in:
Ursprung
f39b466ac0
Commit
274f98c24e
@ -125,8 +125,6 @@ public final class EntityPacketRewriter1_20_3 extends EntityRewriter<Clientbound
|
|||||||
particle.add(0, Types.VAR_INT, 1);
|
particle.add(0, Types.VAR_INT, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
rewriteParticle(event.user(), particle);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
registerEntityDataTypeHandler(
|
registerEntityDataTypeHandler(
|
||||||
@ -134,7 +132,8 @@ public final class EntityPacketRewriter1_20_3 extends EntityRewriter<Clientbound
|
|||||||
Types1_20_3.ENTITY_DATA_TYPES.blockStateType,
|
Types1_20_3.ENTITY_DATA_TYPES.blockStateType,
|
||||||
Types1_20_3.ENTITY_DATA_TYPES.optionalBlockStateType,
|
Types1_20_3.ENTITY_DATA_TYPES.optionalBlockStateType,
|
||||||
Types1_20_3.ENTITY_DATA_TYPES.particleType,
|
Types1_20_3.ENTITY_DATA_TYPES.particleType,
|
||||||
null);
|
null
|
||||||
|
);
|
||||||
registerBlockStateHandler(EntityTypes1_20_3.ABSTRACT_MINECART, 11);
|
registerBlockStateHandler(EntityTypes1_20_3.ABSTRACT_MINECART, 11);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -504,10 +504,6 @@ public final class EntityPacketRewriter1_20_5 extends EntityRewriter<Clientbound
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dataIndex > 9) {
|
|
||||||
event.setIndex(dataIndex - 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (dataIndex == 11) {
|
if (dataIndex == 11) {
|
||||||
// If the particle is found first
|
// If the particle is found first
|
||||||
final EntityData colorData = event.dataAtIndex(9);
|
final EntityData colorData = event.dataAtIndex(9);
|
||||||
@ -515,6 +511,10 @@ public final class EntityPacketRewriter1_20_5 extends EntityRewriter<Clientbound
|
|||||||
addColor(data, colorData.value());
|
addColor(data, colorData.value());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (dataIndex > 9) {
|
||||||
|
event.setIndex(dataIndex - 1);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
filter().type(EntityTypes1_20_5.ARROW).index(10).handler((event, data) -> {
|
filter().type(EntityTypes1_20_5.ARROW).index(10).handler((event, data) -> {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren