diff --git a/coin.rb b/coin.rb index c9c9f60..42977e5 100644 --- a/coin.rb +++ b/coin.rb @@ -60,9 +60,6 @@ end bot.run(true) loop do - # sleep until random time from now to midnight - sleep(get_random_duration(Time.now)) - # activate coin state coin_state_active = true # send coin GIF @@ -70,6 +67,9 @@ loop do # sleep until midnight to reset cycle sleep(get_seconds_to_midnight(Time.now)) + # + # sleep until random time from now to next midnight + sleep(get_random_duration(Time.now)) end bot.join()