static void Postfix(ScoreUIController __instance)
        {
            TextMeshProUGUI text    = __instance.getPrivateField <TextMeshProUGUI>("_scoreText");
            float           ragePct = RageScore.instance.curScore / RageScore.instance.hitCount;

            text.paragraphSpacing = 10;
            text.lineSpacing      = 10;
            text.richText         = true;
            text.text             = "<line-height=50%>" + text.text + "<br><color=red> " + ragePct.ToString("n3") + "%</color>";
        }