From: Ilya246 <57039557+Ilya246@users.noreply.github.com> Date: Sat, 7 Sep 2024 23:44:58 +0000 (+0400) Subject: fix flammable reagents deigniting you (#31930) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=447e9c247d60d68f82da651c0f6b4f4b06601aea;p=space-station-14.git fix flammable reagents deigniting you (#31930) fix --- 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); } }