From: Zeneganto Date: Sat, 16 Aug 2025 21:01:04 +0000 (+1000) Subject: Swap ExudeGasses and ConsumeGasses (#39688) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=201bc6cc5ce8b6132f663c501a96866478acf26b;p=space-station-14.git Swap ExudeGasses and ConsumeGasses (#39688) Uh, um --- diff --git a/Content.Server/EntityEffects/EntityEffectSystem.cs b/Content.Server/EntityEffects/EntityEffectSystem.cs index 1277c8df59..b0b8ab5045 100644 --- a/Content.Server/EntityEffects/EntityEffectSystem.cs +++ b/Content.Server/EntityEffects/EntityEffectSystem.cs @@ -889,7 +889,7 @@ public sealed class EntityEffectSystem : EntitySystem if (plantholder.Seed == null) return; - var gasses = plantholder.Seed.ExudeGasses; + var gasses = plantholder.Seed.ConsumeGasses; // Add a random amount of a random gas to this gas dictionary float amount = _random.NextFloat(args.Effect.MinValue, args.Effect.MaxValue); @@ -911,7 +911,7 @@ public sealed class EntityEffectSystem : EntitySystem if (plantholder.Seed == null) return; - var gasses = plantholder.Seed.ConsumeGasses; + var gasses = plantholder.Seed.ExudeGasses; // Add a random amount of a random gas to this gas dictionary float amount = _random.NextFloat(args.Effect.MinValue, args.Effect.MaxValue);