From 447e9c247d60d68f82da651c0f6b4f4b06601aea Mon Sep 17 00:00:00 2001 From: Ilya246 <57039557+Ilya246@users.noreply.github.com> Date: Sun, 8 Sep 2024 03:44:58 +0400 Subject: [PATCH] fix flammable reagents deigniting you (#31930) fix --- Content.Server/Atmos/EntitySystems/FlammableSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs index cc816a3f10..bc96807af2 100644 --- a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs +++ b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs @@ -296,7 +296,7 @@ namespace Content.Server.Atmos.EntitySystems } else { - flammable.OnFire = ignite; + flammable.OnFire |= ignite; UpdateAppearance(uid, flammable); } }