1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-16 17:13:48 +08:00

work in progress

This commit is contained in:
2025-12-10 01:01:12 +09:00
parent f237789fa0
commit 0d7941387f
2 changed files with 123 additions and 4 deletions

View File

@@ -261,5 +261,12 @@ public class PersistPatch : PatchImpl<PersistPatch>
return matcher.InstructionEnumeration();
}
[HarmonyPostfix]
[HarmonyPatch(typeof(MilkyWayCache), nameof(MilkyWayCache.LoadTopTenPlayerData))]
private static void MilkyWayCache_LoadTopTenPlayerData_Postfix(MilkyWayCache __instance)
{
Functions.UIFunctions.UpdateMilkyWayTopTenPlayers();
}
#endregion
}