After this octobers wipe

getting an error when loading the plugin......

Failed to call hook 'OnEntityDeath' on plugin 'GUIAnnouncements v2.0.6' (NullReferenceException: Object reference not set to an instance of an object)
at Oxide.Plugins.GUIAnnouncements.OnEntityDeath (BaseCombatEntity entity) [0x001d0] in <661c01d3af754794971bfc53ddcdee93>:0
at Oxide.Plugins.GUIAnnouncements.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x009b1] in <661c01d3af754794971bfc53ddcdee93>:0
at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <206a0f2c6ee141f38e2ad549cde44d70>:0
at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000de] in <beb2b64691c64e2b95b99491bd85442c>:0
at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <beb2b64691c64e2b95b99491bd85442c>:0

Needs an update please.

i've pulled it out of the mod list. my ocd with plugins making errors will not let me run them like that for fear of repercussions. 

harold95

i've pulled it out of the mod list. my ocd with plugins making errors will not let me run them like that for fear of repercussions. 

Search for void OnEntityDeath(BaseCombatEntity entity)  Below add some null checks

 void OnEntityDeath(BaseCombatEntity entity)
 {
            if (entity == null || entity.net == null)
                return;