mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 04:22:04 -04:00
kasino shop updated all chat message id to uuid (#95)
* Update KasinoMines.cs * Update SlotsCommand.cs * Update MinesCommand.cs * Update PlinkoCommand.cs * Update PlinkoCommand.cs * Update PlinkoCommand.cs * Update PlanesCommand.cs * Update LimboCommand.cs * Update KenoCommand.cs * Update KasinoUserCommands.cs * Update KasinoRain.cs * Create KasinoShop.cs * Create ShopCommands.cs * Update BotServices.cs * Update MoneyDbModels.cs
This commit is contained in:
@@ -206,11 +206,11 @@ public class MinesCommand : ICommand
|
||||
return;
|
||||
}
|
||||
}
|
||||
await KasinoMines.Bet(gambler.Id, precisePicks, msg, cashout);
|
||||
await KasinoMines.Bet(gambler, precisePicks, msg, cashout);
|
||||
}
|
||||
else //if using picks
|
||||
{
|
||||
await KasinoMines.Bet(gambler.Id, pick, msg, cashout);
|
||||
await KasinoMines.Bet(gambler, pick, msg, cashout);
|
||||
}
|
||||
}
|
||||
else
|
||||
@@ -291,12 +291,12 @@ public class MinesCommand : ICommand
|
||||
return;
|
||||
}
|
||||
}
|
||||
await KasinoMines.Bet(gambler.Id, precisePicks, msg, cashout);
|
||||
await KasinoMines.Bet(gambler, precisePicks, msg, cashout);
|
||||
|
||||
}
|
||||
else //if using picks
|
||||
{
|
||||
await KasinoMines.Bet(gambler.Id, pick, msg, cashout);
|
||||
await KasinoMines.Bet(gambler, pick, msg, cashout);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user