From a09afd1c5eedcb0d7921b9e00cdfec270ab50814 Mon Sep 17 00:00:00 2001
From: DarkGod <darkgod@net-core.org>
Date: Thu, 6 Aug 2020 05:01:23 +0200
Subject: [PATCH] Fixed error when non actors deal damage

---
 game/modules/tome/data/damage_types.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/game/modules/tome/data/damage_types.lua b/game/modules/tome/data/damage_types.lua
index fb4762a40b..742f0586a7 100644
--- a/game/modules/tome/data/damage_types.lua
+++ b/game/modules/tome/data/damage_types.lua
@@ -55,7 +55,7 @@ setDefaultProjector(function(src, x, y, type, dam, state)
 	local crit_power = state.crit_power
 
 	local add_dam = 0
-	if not src.turn_procs.damage_type_fix_type then
+	if not src.turn_procs or not src.turn_procs.damage_type_fix_type then
 		if src:attr("all_damage_convert") and src:attr("all_damage_convert_percent") and src.all_damage_convert ~= type then
 			local ndam = dam * src.all_damage_convert_percent / 100
 			dam = dam - ndam
-- 
GitLab