From 054241175f076e45c96a17d40eda4064c1e8c135 Mon Sep 17 00:00:00 2001 From: Archie Date: Tue, 15 Jun 2021 22:13:43 -0300 Subject: [PATCH] nope --- hyperstation/code/modules/events/crystalline_reentry.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hyperstation/code/modules/events/crystalline_reentry.dm b/hyperstation/code/modules/events/crystalline_reentry.dm index 8c1ca1e8..5475388c 100644 --- a/hyperstation/code/modules/events/crystalline_reentry.dm +++ b/hyperstation/code/modules/events/crystalline_reentry.dm @@ -146,7 +146,7 @@ /obj/effect/crystalline_reentry/Bump(atom/clong) if(!special_target)//If it has a special target, THERE ARE NO BRAKES ON THE ADMINBUS, BABY asteroidhealth = asteroidhealth - rand(7,14) - if(clong = istype()) + if(prob(10)) playsound(src, 'sound/effects/bang.ogg', 50, 1) audible_message("You hear a BONK!") @@ -183,7 +183,7 @@ if(ishuman(L)) var/mob/living/carbon/human/H = L H.adjustBruteLoss(160) - if(special_target && loc == get_turf(special_target)) + if(special_target && loc == get_turf(special_target)) // just in case. Otherwise the asteroid can stop if it penetrates someone that is standing exactly on that spot and that is bad complete_trajectory() /obj/effect/crystalline_reentry/proc/make_debris()