From c9efd990bb435bce4f6a167d332fd2af36a7ae5d Mon Sep 17 00:00:00 2001
From: Orotheim <81803907+Orotheim@users.noreply.github.com>
Date: Wed, 11 Sep 2024 19:21:52 +0100
Subject: [PATCH] Add files via upload
---
code/modules/vehicles/ridden.dm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/code/modules/vehicles/ridden.dm b/code/modules/vehicles/ridden.dm
index fbd61fef..d72f2e9b 100644
--- a/code/modules/vehicles/ridden.dm
+++ b/code/modules/vehicles/ridden.dm
@@ -44,6 +44,9 @@
else if(M.size_multiplier > max_size)
to_chat(M, "You are too big to operate something like this!")
unbuckle_mob(M)
+ else if(HAS_TRAIT(M, TRAIT_IMMUTABLE_SLOW))
+ to_chat(M, "Your armor is too heavy to operate something like this!")
+ unbuckle_mob(M)
return ..()
/obj/vehicle/ridden/attackby(obj/item/I, mob/user, params)