From 7c382cc6cebe3b4291c893d52bb0a36d085ec79f Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Sat, 7 Jun 2025 00:25:17 +0200 Subject: [PATCH] Don't show climb verb for objects that cannot be climbed (#38115) fix climb verb --- Content.Shared/Climbing/Systems/ClimbSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Climbing/Systems/ClimbSystem.cs b/Content.Shared/Climbing/Systems/ClimbSystem.cs index d7d9df7fdd..0067eb87b2 100644 --- a/Content.Shared/Climbing/Systems/ClimbSystem.cs +++ b/Content.Shared/Climbing/Systems/ClimbSystem.cs @@ -170,7 +170,7 @@ public sealed partial class ClimbSystem : VirtualController private void AddClimbableVerb(EntityUid uid, ClimbableComponent component, GetVerbsEvent args) { - if (!args.CanAccess || !args.CanInteract || !_actionBlockerSystem.CanMove(args.User)) + if (!args.CanAccess || !args.CanInteract || !_actionBlockerSystem.CanMove(args.User) || !component.Vaultable) return; if (!TryComp(args.User, out ClimbingComponent? climbingComponent) || climbingComponent.IsClimbing || !climbingComponent.CanClimb) -- 2.51.2