From 28e830f8b4343183ca6981a42fcff892650cdea1 Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Thu, 8 Jan 2026 14:09:23 -0500 Subject: [PATCH] Fix forced vaping checking if the user's mouth is blocked instead of the target's. (#42311) Swap user and target arguments of IngestionSystem.HasMouthAvailable call. --- 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 871a15ee73..547801c7ae 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.User, args.Target.Value) ) { return; -- 2.52.0