Allow null rewrite function in TagRewriter

This commit is contained in:
Nassim Jahnke 2023-03-03 15:14:52 +01:00
parent 9ce3d8e567
commit d94ed4ebd4
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B

View File

@ -110,9 +110,11 @@ public class TagRewriter<C extends ClientboundPacketType> {
public void addTag(RegistryType tagType, String tagId, int... unmappedIds) {
List<TagData> newTags = getOrComputeNewTags(tagType);
IdRewriteFunction rewriteFunction = getRewriter(tagType);
for (int i = 0; i < unmappedIds.length; i++) {
int oldId = unmappedIds[i];
unmappedIds[i] = rewriteFunction.rewrite(oldId);
if (rewriteFunction != null) {
for (int i = 0; i < unmappedIds.length; i++) {
int unmappedId = unmappedIds[i];
unmappedIds[i] = rewriteFunction.rewrite(unmappedId);
}
}
newTags.add(new TagData(tagId, unmappedIds));
}