Skip to content

Commit

Permalink
Add support for !claim
Browse files Browse the repository at this point in the history
  • Loading branch information
SocksTheWolf committed Aug 18, 2024
1 parent eefb385 commit 8e0eb32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MultiUserRaffleBot/Models/TwitchService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ private void OnCommandReceived(object unused, OnChatCommandReceivedArgs args)
SendMessageToChannel(args.Command.ChatMessage.Channel, $"@{user} you have entered!");
}
}
else if (loweredCommand == "confirm" && !string.IsNullOrEmpty(CurrentWinnerName))
else if ((loweredCommand == "confirm" || loweredCommand == "claim") && !string.IsNullOrEmpty(CurrentWinnerName))
{
if (user == CurrentWinnerName)
{
Expand Down

0 comments on commit 8e0eb32

Please sign in to comment.