mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-23 10:35:12 +01:00
Fix AreaEffectCloud metadata rewriting when index [9,10,11] is not provided
This commit is contained in:
parent
f2f485731f
commit
b61b52c57e
@ -17,7 +17,7 @@ import java.util.List;
|
|||||||
|
|
||||||
public class MetadataRewriter {
|
public class MetadataRewriter {
|
||||||
public static void handleMetadata(int entityId, Entity1_13Types.EntityType type, List<Metadata> metadatas, UserConnection connection) {
|
public static void handleMetadata(int entityId, Entity1_13Types.EntityType type, List<Metadata> metadatas, UserConnection connection) {
|
||||||
int particleId = 0, parameter1 = 0, parameter2 = 0;
|
int particleId = -1, parameter1 = 0, parameter2 = 0;
|
||||||
for (Metadata metadata : new ArrayList<>(metadatas)) {
|
for (Metadata metadata : new ArrayList<>(metadatas)) {
|
||||||
try {
|
try {
|
||||||
// Handle new MetaTypes
|
// Handle new MetaTypes
|
||||||
@ -92,7 +92,7 @@ public class MetadataRewriter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Handle AreaEffectCloud outside the loop
|
// Handle AreaEffectCloud outside the loop
|
||||||
if (type != null && type.is(Entity1_13Types.EntityType.AREA_EFFECT_CLOUD)) {
|
if (type != null && type.is(Entity1_13Types.EntityType.AREA_EFFECT_CLOUD) && particleId != -1) {
|
||||||
Particle particle = ParticleRewriter.rewriteParticle(particleId, new Integer[]{parameter1, parameter2});
|
Particle particle = ParticleRewriter.rewriteParticle(particleId, new Integer[]{parameter1, parameter2});
|
||||||
metadatas.add(new Metadata(9, MetaType1_13.PARTICLE, particle));
|
metadatas.add(new Metadata(9, MetaType1_13.PARTICLE, particle));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user