Updated new games so they have individual cleanup delays. Also extended timeouts for Wheel as it's prone to timing out

This commit is contained in:
barelyprofessional
2025-12-10 19:43:28 -06:00
parent 1463d991c1
commit 9ee114c466
4 changed files with 10 additions and 4 deletions

View File

@@ -447,6 +447,12 @@ public static class BuiltIn
public static string YouTubePubSubRedisChannel = "YouTube.PubSub.RedisChannel";
[BuiltInSetting("Delay in milliseconds before cleaning up limbo", SettingValueType.Text, "15000", WholeNumberRegex)]
public static string KasinoLimboCleanupDelay = "Kasino.Limbo.CleanupDelay";
[BuiltInSetting("Delay in milliseconds before cleaning up lambchop", SettingValueType.Text, "15000", WholeNumberRegex)]
public static string KasinoLambchopCleanupDelay = "Kasino.Lambchop.CleanupDelay";
[BuiltInSetting("Delay in milliseconds before cleaning up dice", SettingValueType.Text, "15000", WholeNumberRegex)]
public static string KasinoDiceCleanupDelay = "Kasino.Dice.CleanupDelay";
[BuiltInSetting("Delay in milliseconds before cleaning up wheel", SettingValueType.Text, "30000", WholeNumberRegex)]
public static string KasinoWheelCleanupDelay = "Kasino.Wheel.CleanupDelay";
}
}