forked from akanyan/mu3-mods
feat(MPO): add textures and fix an edge case
This commit is contained in:
@ -6,8 +6,12 @@ class patch_MU3UICounter: MU3UICounter {
|
||||
protected extern void orig_calcNumFiguresFloat(double value);
|
||||
protected new void calcNumFiguresFloat(double value) {
|
||||
orig_calcNumFiguresFloat(value);
|
||||
|
||||
if(isDispSuffix) {
|
||||
pushFigureFront(CustomRating.GetSuffix());
|
||||
var b = CustomRating.GetSuffix();
|
||||
if(b != 0) {
|
||||
pushFigureFront(b);
|
||||
}
|
||||
}
|
||||
}
|
||||
public bool isDispSuffix { get; set; }
|
||||
|
Reference in New Issue
Block a user