1
0
mirror of synced 2024-09-23 18:48:22 +02:00
TaikoModStuff/FontChanger.cs
2022-01-27 11:34:10 -07:00

16 lines
374 B
C#

using HarmonyLib;
namespace TaikoModStuff
{
internal class FontChanger
{
[HarmonyPatch(typeof(WordDataManager), "GetFontType")]
[HarmonyPostfix]
static void GetFontType_Patched(ref int __result)
{
if (Plugin.configForceFontChange.Value)
__result = 0; // Force the font to the JP one.
}
}
}