Update cleanup delay settings for PlinkoCommand, use plinko delay instead of limbo (#27)

Update cleanup delay settings for PlinkoCommand, use plinko delay instead of limbo
This commit is contained in:
alogindtractor
2026-01-07 14:18:32 -08:00
committed by GitHub
parent 7e3ba4e641
commit e0d388b2f0

View File

@@ -51,7 +51,7 @@ public class PlinkoCommand : ICommand
decimal currentPayout = 0; decimal currentPayout = 0;
Group? number; Group? number;
var settings = await SettingsProvider.GetMultipleValuesAsync([ var settings = await SettingsProvider.GetMultipleValuesAsync([
BuiltIn.Keys.KasinoLimboCleanupDelay, BuiltIn.Keys.KiwiFarmsGreenColor, BuiltIn.Keys.KiwiFarmsRedColor BuiltIn.Keys.KasinoPlinkoCleanupDelay, BuiltIn.Keys.KiwiFarmsGreenColor, BuiltIn.Keys.KiwiFarmsRedColor
]); ]);
var cleanupDelay = TimeSpan.FromMilliseconds(settings[BuiltIn.Keys.KasinoPlinkoCleanupDelay].ToType<int>()); var cleanupDelay = TimeSpan.FromMilliseconds(settings[BuiltIn.Keys.KasinoPlinkoCleanupDelay].ToType<int>());
if (!arguments.TryGetValue("amount", out var amount)) if (!arguments.TryGetValue("amount", out var amount))