Added 100 minimum for rain

This commit is contained in:
barelyprofessional
2026-02-19 20:20:04 -06:00
parent 366311a20a
commit ec11dff3bd

View File

@@ -94,6 +94,14 @@ public class RainCommand : ICommand
return;
}
decimal rainMin = 100;
if (decAmount < rainMin)
{
await botInstance.SendChatMessageAsync($"{user.FormatUsername()}, rain at least {await rainMin.FormatKasinoCurrencyAsync()}", true,
autoDeleteAfter: cleanupDelay);
return;
}
rain = new KasinoRainModel
{
Participants = [],