Reset findbyidSolved

The new /radar findbyid is really useful, but how do you reset it?

EDIT: never mind, it times out after a bit

In the plugin CS file: Line 3260 - Column 50 : 

foreach (BaseTrain train in BaseNetworkable.serverEntities)
{
timer.Repeat(1f, 60, () =>
{
player.SendConsoleCommand("ddraw.text", 1f, Color.red, train.transform.position, train.GetType().Name);
});
}​


I set mine to 20:

timer.Repeat(1f, 20, () =>


Either an exposed config variable or added disable command should really be added to address this.

Locked automatically