Configured virtual receivers stop working randomlyFixed
Just noticed my configured virtual receivers will stop working. When I rftool.listeners.set_interval it starts working again..

someone smart enough to come up with a debug command to check if the timer is still running or if it's something with the block stuff?
Think I figured it out.. the timer seemed to stop after a save.. a server saves every 10 minutes by default and this plugin has this code why? When a server shuts down plugins are unloaded so the timer would be destroyed automatically? Any harm in removing this code?

/*
* Clear up before server shuts down
*/
  void OnServerSave() {
     // Stop listener loop timer
     this.listener_timer.Destroy();
  }
Hmm, the API says "Called before the server saves and shuts down" about that hook. Might be a bid misleading I guess. I'll fix it.

Merged post

Should be fixed now in latest version
thanks, I changed it to OnServerShutdown al tho I think the timer should still get destroyed automatically at unload?
Locked automatically