From f1f89e5ecc01358bafbb5b4c3b67282e5a25dea7 Mon Sep 17 00:00:00 2001 From: Ben10Omintrix <138636438+Ben10Omintrix@users.noreply.github.com> Date: Sun, 7 Jul 2024 22:04:47 +0300 Subject: [PATCH] [no gbp] fixes watchers making raptors freak out (#84719) ## About The Pull Request i meant for these changes to be station-side only ## Why It's Good For The Game closes #84655 ## Changelog :cl: fix: raptors don't easily stress out in lavaland environments /:cl: --- code/datums/components/riding/riding_mob.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/riding/riding_mob.dm b/code/datums/components/riding/riding_mob.dm index 09bb8715b29..50798fce501 100644 --- a/code/datums/components/riding/riding_mob.dm +++ b/code/datums/components/riding/riding_mob.dm @@ -554,7 +554,7 @@ /datum/component/riding/creature/raptor/proc/freak_out() var/mob/living/living_parent = parent - if(!length(living_parent.buckled_mobs)) + if(lavaland_equipment_pressure_check(get_turf(living_parent)) || !length(living_parent.buckled_mobs)) return living_parent.balloon_alert_to_viewers("freaks out!") living_parent.spin(spintime = 2 SECONDS, speed = 1)