]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
fix flammable reagents deigniting you (#31930)
authorIlya246 <57039557+Ilya246@users.noreply.github.com>
Sat, 7 Sep 2024 23:44:58 +0000 (03:44 +0400)
committerGitHub <noreply@github.com>
Sat, 7 Sep 2024 23:44:58 +0000 (17:44 -0600)
fix

Content.Server/Atmos/EntitySystems/FlammableSystem.cs

index cc816a3f10efaed95de454ca1e6c2ee631ed7e99..bc96807af2db827c074c52981b2c4f7ffaf33025 100644 (file)
@@ -296,7 +296,7 @@ namespace Content.Server.Atmos.EntitySystems
             }
             else
             {
-                flammable.OnFire = ignite;
+                flammable.OnFire |= ignite;
                 UpdateAppearance(uid, flammable);
             }
         }