mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-12-25 01:47:39 +01:00
Fix banner items
This commit is contained in:
parent
5d19697004
commit
7ad59b7cb0
@ -281,13 +281,21 @@ public class InventoryPackets {
|
|||||||
// NBT Changes
|
// NBT Changes
|
||||||
if (tag != null) {
|
if (tag != null) {
|
||||||
// Invert shield color id
|
// Invert shield color id
|
||||||
if (item.getId() == 442) {
|
if (item.getId() == 442 || item.getId() == 425) {
|
||||||
if (tag.get("BlockEntityTag") instanceof CompoundTag) {
|
if (tag.get("BlockEntityTag") instanceof CompoundTag) {
|
||||||
CompoundTag blockEntityTag = tag.get("BlockEntityTag");
|
CompoundTag blockEntityTag = tag.get("BlockEntityTag");
|
||||||
if (blockEntityTag.get("Base") instanceof IntTag) {
|
if (blockEntityTag.get("Base") instanceof IntTag) {
|
||||||
IntTag base = blockEntityTag.get("Base");
|
IntTag base = blockEntityTag.get("Base");
|
||||||
base.setValue(15 - base.getValue());
|
base.setValue(15 - base.getValue());
|
||||||
}
|
}
|
||||||
|
if (blockEntityTag.get("Patterns") instanceof ListTag) {
|
||||||
|
for (Tag pattern : (ListTag) blockEntityTag.get("Patterns")) {
|
||||||
|
if (pattern instanceof CompoundTag) {
|
||||||
|
IntTag c = ((CompoundTag) pattern).get("Color");
|
||||||
|
c.setValue(15 - c.getValue()); // Invert color id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Display Name now uses JSON
|
// Display Name now uses JSON
|
||||||
@ -426,15 +434,24 @@ public class InventoryPackets {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.getId() == 442) { // shield
|
if (item.getId() == 442 || item.getId() == 425) { // shield / banner
|
||||||
if (tag.get("BlockEntityTag") instanceof CompoundTag) {
|
if (tag.get("BlockEntityTag") instanceof CompoundTag) {
|
||||||
CompoundTag blockEntityTag = tag.get("BlockEntityTag");
|
CompoundTag blockEntityTag = tag.get("BlockEntityTag");
|
||||||
if (blockEntityTag.get("Base") instanceof IntTag) {
|
if (blockEntityTag.get("Base") instanceof IntTag) {
|
||||||
IntTag base = blockEntityTag.get("Base");
|
IntTag base = blockEntityTag.get("Base");
|
||||||
base.setValue(15 - base.getValue()); // invert color id
|
base.setValue(15 - base.getValue()); // invert color id
|
||||||
}
|
}
|
||||||
|
if (blockEntityTag.get("Patterns") instanceof ListTag) {
|
||||||
|
for (Tag pattern : (ListTag) blockEntityTag.get("Patterns")) {
|
||||||
|
if (pattern instanceof CompoundTag) {
|
||||||
|
IntTag c = ((CompoundTag) pattern).get("Color");
|
||||||
|
c.setValue(15 - c.getValue()); // Invert color id
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
// Display Name now uses JSON
|
// Display Name now uses JSON
|
||||||
if (tag.get("display") instanceof CompoundTag) {
|
if (tag.get("display") instanceof CompoundTag) {
|
||||||
|
Loading…
Reference in New Issue
Block a user