Override nbtTagName() correctly (#717)

This commit is contained in:
EnZaXD 2024-04-05 20:36:03 +02:00 committed by GitHub
parent 39d3265463
commit 1647b18233
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -102,4 +102,9 @@ public abstract class ItemRewriterBase<C extends ClientboundPacketType, S extend
tag.put(tagName, ((ListTag<?>) original).copy());
}
}
@Override
public String nbtTagName() {
return "VB|" + protocol.getClass().getSimpleName();
}
}