use fragment material and avatar star up also prevent capt. exp overflow

this took wayyyyyyyyyy longer than it shoud be
This commit is contained in:
rafi1212122
2023-06-05 11:05:27 +07:00
parent 130f83544c
commit 934e7475d7
10 changed files with 355 additions and 1 deletions

View File

@@ -84,6 +84,11 @@ namespace Common.Utils.ExcelReader
return new LevelData(level, exp);
}
public int GetMaxPossibleExp()
{
return All.Select(x => x.Exp).Sum() - 1;
}
}
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.