Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-12-28 09:00:09 +01:00
Add getSpawnParticleHandler method to ItemRewriter
Dieser Commit ist enthalten in:
Ursprung
52b95eab28
Commit
a4d1ac3b95
@ -205,7 +205,13 @@ public class ItemRewriter {
|
|||||||
map(Type.FLOAT); // 7 - Offset Z
|
map(Type.FLOAT); // 7 - Offset Z
|
||||||
map(Type.FLOAT); // 8 - Particle Data
|
map(Type.FLOAT); // 8 - Particle Data
|
||||||
map(Type.INT); // 9 - Particle Count
|
map(Type.INT); // 9 - Particle Count
|
||||||
handler(wrapper -> {
|
handler(getSpawnParticleHandler(itemType, coordType));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public PacketHandler getSpawnParticleHandler(Type<Item> itemType, Type<?> coordType) {
|
||||||
|
return wrapper -> {
|
||||||
int id = wrapper.get(Type.INT, 0);
|
int id = wrapper.get(Type.INT, 0);
|
||||||
if (id == -1) return;
|
if (id == -1) return;
|
||||||
|
|
||||||
@ -221,9 +227,7 @@ public class ItemRewriter {
|
|||||||
if (newId != id) {
|
if (newId != id) {
|
||||||
wrapper.set(Type.INT, 0, newId);
|
wrapper.set(Type.INT, 0, newId);
|
||||||
}
|
}
|
||||||
});
|
};
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only sent to the client
|
// Only sent to the client
|
||||||
|
@ -43,8 +43,8 @@ public class EntityPackets {
|
|||||||
dimensionName = "minecraft:overworld";
|
dimensionName = "minecraft:overworld";
|
||||||
}
|
}
|
||||||
|
|
||||||
wrapper.write(Type.STRING, dimensionName); // dimension type
|
|
||||||
wrapper.write(Type.STRING, dimensionName); // dimension
|
wrapper.write(Type.STRING, dimensionName); // dimension
|
||||||
|
wrapper.write(Type.STRING, dimensionName); // world
|
||||||
};
|
};
|
||||||
public static final CompoundTag DIMENSIONS_TAG = new CompoundTag("");
|
public static final CompoundTag DIMENSIONS_TAG = new CompoundTag("");
|
||||||
private static final String[] WORLD_NAMES = {"minecraft:overworld", "minecraft:the_nether", "minecraft:the_end"};
|
private static final String[] WORLD_NAMES = {"minecraft:overworld", "minecraft:the_nether", "minecraft:the_end"};
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren