Skip to content

Commit

Permalink
Small updates
Browse files Browse the repository at this point in the history
  • Loading branch information
SocksTheWolf committed Aug 18, 2024
1 parent a52c3ee commit fac9725
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 0 additions & 4 deletions MultiUserRaffleBot/Models/RaffleService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@ public void ReachMilestone(double milestone)
PrintMessage($"Enqueued a raffle for milestone {milestone}");
RaffleQueue.Enqueue(RaffleData[milestone]);
}
else
{
PrintMessage($"Unable to enqueue a raffle for milestone {milestone}");
}
}

protected override async Task Tick()
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Once set, restart the application and keep it running for however long your even

## Notes

* All raffle winners will contain the Twitch whisperable username of the winner in a generated raffles.txt file.
* All raffle winners will contain the Twitch whisperable username of the winner in a generated `raffles.txt` file.
* There is no support for "restoring progress" from closing the app and opening it again. If you need to close the app, it's recommended that you remove all the completed raffles from your config file. Otherwise those previous raffles will run again.
* This connects to all of the Twitch accounts in the channels list
* If no raffle entries are made, the raffle will be closed with no winner and still documented in the output raffles.txt file.
Expand All @@ -22,7 +22,8 @@ This is an array of RaffleItems, of which the schema is as follows:
{
"Artist": "ExampleArtist",
"Type": "Full body piece",
"Amount": 200.00
"Amount": 200.00,
"RaffleTime": 600
}
```

Expand Down

0 comments on commit fac9725

Please sign in to comment.