Skip to content

Commit

Permalink
Fix VV particle mappings returning null for footstep identifier
Browse files Browse the repository at this point in the history
This is caused by us adding a new particle and having it going through Via protocols
  • Loading branch information
FlorianMichael committed Nov 29, 2024
1 parent 6b087f9 commit c7e65c0
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,12 @@ public int getNewId(int id) {
}
}

@Override
public String mappedIdentifier(int mappedId) {
if (mappedId == FootStepParticle1_12_2.RAW_ID) {
return "";
} else {
return super.mappedIdentifier(mappedId);
}
}
}

0 comments on commit c7e65c0

Please sign in to comment.