Skip to content

Commit

Permalink
Merge pull request #3238 from OverDriveZ/taurs-do-not-need-hands-to-c…
Browse files Browse the repository at this point in the history
…arry-passengers

Piggyback riding! [ready to merge]
  • Loading branch information
Tk420634 authored Oct 2, 2023
2 parents e99dc50 + 71361d1 commit dffe29e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code/modules/mob/living/carbon/human/human.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1344,7 +1344,10 @@ GLOBAL_VAR_INIT(crotch_call_cooldown, 0)
if(target.incapacitated(FALSE, TRUE) || incapacitated(FALSE, TRUE))
target.visible_message("<span class='warning'>[target] can't hang onto [src]!</span>")
return
buckle_mob(target, TRUE, TRUE, FALSE, 1, 2, FALSE)
if(dna.features["taur"] != "None") //if the mount is a taur, then everyone needs -1 hands to piggback ride.
buckle_mob(target, TRUE, TRUE, FALSE, 0, 1, FALSE)
else
buckle_mob(target, TRUE, TRUE, FALSE, 1, 2, FALSE)
else
visible_message("<span class='warning'>[target] fails to climb onto [src]!</span>")
else
Expand Down

0 comments on commit dffe29e

Please sign in to comment.