forked from akanyan/mu3-mods
feat!: NaiveRating -> MoreProfileOptions
This commit is contained in:
14
Extras/MoreProfileOptions/MU3.Game/patch_SessionResult.cs
Normal file
14
Extras/MoreProfileOptions/MU3.Game/patch_SessionResult.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using MU3.Battle;
|
||||
using MU3.Mod;
|
||||
|
||||
namespace MU3.Game;
|
||||
|
||||
class patch_SessionResult: SessionResult {
|
||||
public int prevNaiveRating;
|
||||
|
||||
public extern void orig_calcTotalRewards();
|
||||
public new void calcTotalRewards() {
|
||||
orig_calcTotalRewards();
|
||||
prevNaiveRating = NaiveRating.Get();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user