Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-12-27 08:30:09 +01:00
Allow null rewrite function in TagRewriter
Dieser Commit ist enthalten in:
Ursprung
9ce3d8e567
Commit
d94ed4ebd4
@ -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));
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren