forked from akanyan/mu3-mods
feat: reachable rating
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user