1
0
forked from akanyan/mu3-mods

feat: reachable rating

This commit is contained in:
2024-12-23 18:11:33 +00:00
parent 57d7be2bfb
commit 8c532260b3
15 changed files with 139 additions and 109 deletions

View File

@ -1,14 +1,13 @@
using MU3.Battle;
using MU3.Mod;
using MU3.Mod;
namespace MU3.Game;
class patch_SessionResult: SessionResult {
public int prevNaiveRating;
public int prevCustomRating;
public extern void orig_calcTotalRewards();
public new void calcTotalRewards() {
orig_calcTotalRewards();
prevNaiveRating = NaiveRating.Get();
prevCustomRating = CustomRating.Get();
}
}