This commit is contained in:
S34N
2023-03-25 21:41:28 +01:00
committed by GitHub
parent e7acbdd6d0
commit 6bb5674928
5 changed files with 9 additions and 3 deletions
@@ -74,7 +74,7 @@
/obj/item/clothing/accessory/attack(mob/living/carbon/human/H, mob/living/user)
// This code lets you put accessories on other people by attacking their sprite with the accessory
if(istype(H))
if(istype(H) && !ismonkeybasic(H)) //Monkeys are a snowflake because you can't remove accessories once added
if(H.wear_suit && H.wear_suit.flags_inv & HIDEJUMPSUIT)
to_chat(user, "[H]'s body is covered, and you cannot attach \the [src].")
return 1
+1 -1
View File
@@ -35,7 +35,7 @@
else if(target.stat != DEAD)
to_chat(target, "<span class='notice'>You feel great!</span>")
return
if(ismachineperson(target)) //speshul snowfleks deserv speshul treetment
if(ismachineperson(target) || issilicon(target)) //speshul snowfleks deserv speshul treetment
target.adjustFireLoss(6969) //remember - slimes love fire
target.death(FALSE)