fix(core): NPE in Cycles per second (#331)

- [X] Fixes an edge case where the cycle index goes negative and crashes
- [X] Fixes average CPS calculation
- [X] Fixes issue with logout delay
- [X] Bumps release version
This commit is contained in:
Kamron Batman 2020-11-30 23:12:16 -08:00 committed by GitHub
parent b71c754738
commit 75c1b32513
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
88 changed files with 216 additions and 188 deletions

View file

@ -14,7 +14,7 @@ namespace Server.Mobiles
{
}
protected override List<SBInfo> SBInfos { get; } = new List<SBInfo>();
protected override List<SBInfo> SBInfos { get; } = new();
public override bool IsActiveVendor => false;