ResetChatGiveExp.cs 469 B

1234567891011121314151617
  1. using System;
  2. using System.Timers;
  3. using CardCollector.Commands.Message;
  4. using CardCollector.Resources;
  5. namespace CardCollector.TimerTasks
  6. {
  7. public class ResetChatGiveExp : TimerTask
  8. {
  9. protected override TimeSpan RunAt => Constants.DEBUG ? new TimeSpan(10, 17, 20) : new TimeSpan(10, 0, 0);
  10. protected override void TimerCallback(object o, ElapsedEventArgs e)
  11. {
  12. GiveExp.GroupStickersExp.Clear();
  13. }
  14. }
  15. }