mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-08-03 19:36:14 -04:00
Fix ZS Stats Bug
statMostSurvived and statMostInfected now point to the appropriate ZombieStats DB column.
This commit is contained in:
parent
51e63d22db
commit
bc5859896c
@ -36,9 +36,9 @@ namespace MCGalaxy.Modules.Games.ZS
|
||||
static void HookStats() {
|
||||
statMostInfected = new DBTopStat("Infected", "Most players infected",
|
||||
"ZombieStats", "TotalInfected", TopStat.FormatInteger);
|
||||
statMaxInfected = new DBTopStat("Survived", "Most rounds survived",
|
||||
statMostSurvived = new DBTopStat("Survived", "Most rounds survived",
|
||||
"ZombieStats", "TotalRounds", TopStat.FormatInteger);
|
||||
statMostSurvived = new DBTopStat("ConsecutiveInfected", "Most consecutive infections",
|
||||
statMaxInfected = new DBTopStat("ConsecutiveInfected", "Most consecutive infections",
|
||||
"ZombieStats", "MaxInfected", TopStat.FormatInteger);
|
||||
statMaxSurvived = new DBTopStat("ConsecutiveSurvived", "Most consecutive rounds survived",
|
||||
"ZombieStats", "MaxRounds", TopStat.FormatInteger);
|
||||
|
Loading…
x
Reference in New Issue
Block a user