Surgical tools will no longer cause damage on help intent

This commit is contained in:
Anewbe
2017-01-21 18:34:05 -06:00
parent 022ea9f15e
commit ac4b355f5e
33 changed files with 213 additions and 183 deletions

View File

@@ -140,17 +140,17 @@
/obj/item/organ/external/attackby(obj/item/weapon/W as obj, mob/living/user as mob)
switch(stage)
if(0)
if(istype(W,/obj/item/weapon/scalpel))
if(istype(W,/obj/item/weapon/surgical/scalpel))
user.visible_message("<span class='danger'><b>[user]</b> cuts [src] open with [W]!</span>")
stage++
return
if(1)
if(istype(W,/obj/item/weapon/retractor))
if(istype(W,/obj/item/weapon/surgical/retractor))
user.visible_message("<span class='danger'><b>[user]</b> cracks [src] open like an egg with [W]!</span>")
stage++
return
if(2)
if(istype(W,/obj/item/weapon/hemostat))
if(istype(W,/obj/item/weapon/surgical/hemostat))
if(contents.len)
var/obj/item/removing = pick(contents)
removing.loc = get_turf(user.loc)