From: ViolentMonk Date: Fri, 22 Aug 2025 22:26:48 +0000 (-0700) Subject: Invert HasMouthAvailable check (#39834) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=91fc0f4378d3fedc8ba6e5efe19f524ce1d19214;p=space-station-14.git Invert HasMouthAvailable check (#39834) --- diff --git a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs index 5de6a5a631..6905979a5f 100644 --- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs +++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs @@ -42,7 +42,7 @@ namespace Content.Server.Nutrition.EntitySystems if (!args.CanReach || !_solutionContainerSystem.TryGetRefillableSolution(entity.Owner, out _, out var solution) || !HasComp(args.Target) - || _ingestion.HasMouthAvailable(args.Target.Value, args.User) + || !_ingestion.HasMouthAvailable(args.Target.Value, args.User) ) { return;