From f1e1d63c6a3629665a3c6dc0ff97963cdc44c673 Mon Sep 17 00:00:00 2001 From: oranges Date: Tue, 17 May 2022 17:35:46 +1200 Subject: [PATCH] Allows slimes to buckle to monkeys again (#67034) * Allows slimes to buckle to monkeys again Just because they are not able to ride things doens't mean they should not be able to buckle to anything * Update code/datums/elements/ridable.dm Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> --- code/datums/elements/ridable.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/datums/elements/ridable.dm b/code/datums/elements/ridable.dm index f028304c969..240333125be 100644 --- a/code/datums/elements/ridable.dm +++ b/code/datums/elements/ridable.dm @@ -42,7 +42,9 @@ SIGNAL_HANDLER if(HAS_TRAIT(potential_rider, TRAIT_CANT_RIDE)) - return COMPONENT_BLOCK_BUCKLE + //Do not prevent buckle, but stop any riding, do not block buckle here + //There are things that are supposed to buckle (like slimes) but not ride the creature + return NONE var/arms_needed = 0 if(ride_check_flags & RIDER_NEEDS_ARMS)