diff --git a/wadsrc/static/zscript/actors/hexen/clericholy.zs b/wadsrc/static/zscript/actors/hexen/clericholy.zs index 8f2af52a4d..e3aee9bace 100644 --- a/wadsrc/static/zscript/actors/hexen/clericholy.zs +++ b/wadsrc/static/zscript/actors/hexen/clericholy.zs @@ -346,7 +346,7 @@ class HolySpirit : Actor { if (thing.bShootable && thing != target) { - if (multiplayer && !deathmatch && thing.player && target.player) + if (multiplayer && !deathmatch && thing.player && target && target.player) { // don't attack other co-op players return true; }