From 91fc0f4378d3fedc8ba6e5efe19f524ce1d19214 Mon Sep 17 00:00:00 2001 From: ViolentMonk Date: Fri, 22 Aug 2025 15:26:48 -0700 Subject: [PATCH] Invert HasMouthAvailable check (#39834) --- Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.51.2