From 762051fb08338127694db969521ce9ae19a5354a Mon Sep 17 00:00:00 2001 From: unusualcrow Date: Thu, 15 Dec 2016 14:09:43 -0500 Subject: [PATCH] agsrwhbawga --- code/modules/vehicles/firebird.dm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/code/modules/vehicles/firebird.dm b/code/modules/vehicles/firebird.dm index 6d8488ac5b..0dfc7d7f60 100644 --- a/code/modules/vehicles/firebird.dm +++ b/code/modules/vehicles/firebird.dm @@ -26,6 +26,7 @@ var/cooldown = FALSE //whether cooldown is active /datum/action/firebird_boost/Trigger(mob/living/carbon/human/H) + ..() if(!H.buckled) return var/obj/vehicle/firebird/buckled_obj @@ -36,11 +37,9 @@ buckled_obj.boostactive = TRUE addtimer(src, "deactivate_boost", 20) addtimer(src, "reset_cooldown", 100) + world << "Trigger success." -/datum/action/firebird_boost/IsAvailable() - if(cooldown = TRUE) - return 0 - return ..() + world << "Triggered." /datum/action/firebird_boost/proc/deactivate_boost(mob/living/carbon/human/H) boosting = FALSE