Fix VV particle mappings returning null for footstep identifier

This is caused by us adding a new particle and having it going through Via protocols
This commit is contained in:
FlorianMichael 2024-11-29 16:23:05 +01:00
parent 6b087f99b5
commit c7e65c0a8b
No known key found for this signature in database
GPG Key ID: C2FB87E71C425126

View File

@ -43,4 +43,12 @@ public abstract class MixinParticleMappings extends FullMappingsBase {
}
}
@Override
public String mappedIdentifier(int mappedId) {
if (mappedId == FootStepParticle1_12_2.RAW_ID) {
return "";
} else {
return super.mappedIdentifier(mappedId);
}
}
}