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)