Removes the skyrat crusher overrides for the sake of code stability and because nobody's maintaining it

This commit is contained in:
Majkl-J
2025-02-26 00:19:25 -08:00
parent c1e70a2a9e
commit 8d8113cd9e
14 changed files with 1 additions and 803 deletions
-10
View File
@@ -391,23 +391,13 @@
add_action(ACTION_GIBTONITE_DEFUSED, min(40, 20 * (10 - det_time))) // 40 to 180 points depending on speed
//SKYRAT EDIT START
/*
/datum/component/style/proc/on_crusher_detonate(datum/source, mob/living/target, obj/item/kinetic_crusher/crusher, backstabbed)
*/
/datum/component/style/proc/on_crusher_detonate(datum/component/kinetic_crusher/source, mob/living/target, obj/item/kinetic_crusher/crusher, backstabbed)
//SKYRAT EDIT END
SIGNAL_HANDLER
if(target.stat == DEAD)
return
//SKYRAT EDIT START
/*
var/has_brimdemon_trophy = locate(/obj/item/crusher_trophy/brimdemon_fang) in crusher.trophies
*/
var/has_brimdemon_trophy = locate(/obj/item/crusher_trophy/brimdemon_fang) in source.stored_trophies
//SKYRAT EDIT END
add_action(ACTION_MARK_DETONATED, round((backstabbed ? 60 : 30) * (ismegafauna(target) ? 1.5 : 1) * (has_brimdemon_trophy ? 1.25 : 1)))