@Wulf, can you change field Oxide.Core.Plugins.TotalHookTime to more detail for each hook in the plugin?
This will help to analyze the load of the plugins more accurately.
From
public double TotalHookTime;
To
public Dictionary<string, double> TotalHookTime; // Where Key is hook name, Value is hook time
This will help to analyze the load of the plugins more accurately.
From
public double TotalHookTime;
To
public Dictionary<string, double> TotalHookTime; // Where Key is hook name, Value is hook time