From 2e615289feeeaba33d448caf3b8ac0690696aee7 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Tue, 13 Jun 2023 11:34:39 -0400 Subject: [PATCH] test (#21327) --- code/game/machinery/portable_turret.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/portable_turret.dm b/code/game/machinery/portable_turret.dm index 3422f6f4d6f..5335d0eddb0 100644 --- a/code/game/machinery/portable_turret.dm +++ b/code/game/machinery/portable_turret.dm @@ -435,7 +435,7 @@ GLOBAL_LIST_EMPTY(turret_icons) return health -= damage_amount - if(damage_amount > 5 && prob(45) && spark_system) + if(damage_amount > 5 && prob(45) && spark_system && damage_flag != FIRE) spark_system.start() if(health <= 0) die() //the death process :(