Skip to content

Commit

Permalink
-Fixed a Bug that would cause the Claim to be triggered twice for eve…
Browse files Browse the repository at this point in the history
…ry drop
  • Loading branch information
toxxic407 committed Apr 3, 2021
1 parent 7311b2e commit cff9275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rust Drop Bot/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ static void Main()
Process StreamWindow = Process.Start(path, stats[Current_Stream].URL);
stats = Update_stats();
Console.WriteLine(stats[Current_Stream].Watchtime + "/130 Minutes (" + stats[Current_Stream].Name + ")");
for (int i = stats[Current_Stream].Watchtime; i < 130; i++)
for (int i = stats[Current_Stream].Watchtime; i <= 130; i++)
{
SetThreadExecutionState(EXECUTION_STATE.ES_DISPLAY_REQUIRED | EXECUTION_STATE.ES_SYSTEM_REQUIRED | EXECUTION_STATE.ES_CONTINUOUS);
Thread.Sleep(60000);
Expand Down

0 comments on commit cff9275

Please sign in to comment.