From 193d9c8e90002d302a0b556efdb3574ee9ceaed7 Mon Sep 17 00:00:00 2001 From: carlarctg <53100513+carlarctg@users.noreply.github.com> Date: Fri, 25 Oct 2024 12:40:45 -0300 Subject: [PATCH] Hitting an SM with extraction tongs won't dust them anymore (#87430) ## About The Pull Request Hitting an SM with extraction tongs won't dust them anymore (the tips are made out of hypernob too) ## Why It's Good For The Game consistency (real reason is me hitting the sm crystal with tongs while sleep deprived and ruining my planned gimmick, but come on. theyre hypernob tongs. ) ## Changelog :cl: fix: Hitting an SM with extraction tongs won't dust them anymore /:cl: --------- Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> Co-authored-by: Fikou <23585223+Fikou@users.noreply.github.com> --- code/modules/power/supermatter/supermatter_hit_procs.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/power/supermatter/supermatter_hit_procs.dm b/code/modules/power/supermatter/supermatter_hit_procs.dm index 57c86303a0a..11b42d71446 100644 --- a/code/modules/power/supermatter/supermatter_hit_procs.dm +++ b/code/modules/power/supermatter/supermatter_hit_procs.dm @@ -84,6 +84,10 @@ to_chat(user, span_warning("You fail to extract a sliver from \The [src]! \the [scalpel] isn't sharp enough anymore.")) return + if(istype(item, /obj/item/hemostat/supermatter)) + to_chat(user, span_warning("You poke [src] with [item]'s hyper-noblium tips. Nothing happens.")) + return + if(istype(item, /obj/item/destabilizing_crystal)) var/obj/item/destabilizing_crystal/destabilizing_crystal = item