mirror of
https://github.com/ViaVersion/ViaFabricPlus.git
synced 2024-12-31 18:18:04 +01:00
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:
parent
6b087f99b5
commit
c7e65c0a8b
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user