forked from akanyan/mu3-mods
15 lines
309 B
C#
15 lines
309 B
C#
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();
|
|
}
|
|
}
|