mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
[MIRROR] some dropped sanity (#9856)
Co-authored-by: Cameron Lennox <killer65311@gmail.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
6ba6be650c
commit
2d0719a4d4
@@ -75,6 +75,7 @@
|
||||
src.creator = loc
|
||||
|
||||
/obj/item/melee/changeling/dropped(mob/user)
|
||||
..()
|
||||
visible_message(span_warning("With a sickening crunch, [creator] reforms their arm!"),
|
||||
span_notice("We assimilate the weapon back into our body."),
|
||||
span_warningplain("You hear organic matter ripping and tearing!"))
|
||||
|
||||
@@ -48,7 +48,8 @@
|
||||
span_warning("We inflate our flesh, creating a spaceproof suit!"),
|
||||
span_warningplain("You hear organic matter ripping and tearing!"))
|
||||
|
||||
/obj/item/clothing/suit/space/changeling/dropped()
|
||||
/obj/item/clothing/suit/space/changeling/dropped(mob/user)
|
||||
..()
|
||||
qdel(src)
|
||||
|
||||
/obj/item/clothing/head/helmet/space/changeling
|
||||
@@ -60,7 +61,8 @@
|
||||
body_parts_covered = HEAD|FACE|EYES
|
||||
canremove = FALSE
|
||||
|
||||
/obj/item/clothing/head/helmet/space/changeling/dropped()
|
||||
/obj/item/clothing/head/helmet/space/changeling/dropped(mob/user)
|
||||
..()
|
||||
qdel(src)
|
||||
|
||||
/obj/item/clothing/shoes/magboots/changeling
|
||||
@@ -89,7 +91,7 @@
|
||||
force = 5
|
||||
to_chat(user, "We cling to the terrain below us.")
|
||||
|
||||
/obj/item/clothing/shoes/magboots/changeling/dropped()
|
||||
/obj/item/clothing/shoes/magboots/changeling/dropped(mob/user)
|
||||
..()
|
||||
qdel(src)
|
||||
|
||||
|
||||
@@ -122,6 +122,7 @@
|
||||
new /obj/effect/effect/sparks(T)
|
||||
|
||||
/obj/item/electric_hand/dropped(mob/user)
|
||||
..()
|
||||
spawn(1)
|
||||
if(src)
|
||||
qdel(src)
|
||||
|
||||
@@ -37,6 +37,7 @@
|
||||
to_chat(loc, span_notice("We shape our finger to fit inside electronics, and are ready to force them open."))
|
||||
|
||||
/obj/item/finger_lockpick/dropped(mob/user)
|
||||
..()
|
||||
to_chat(user, span_notice("We discreetly shape our finger back to a less suspicious form."))
|
||||
spawn(1)
|
||||
if(src)
|
||||
|
||||
@@ -282,7 +282,8 @@
|
||||
// Proc: dropped()
|
||||
// Parameters: 0
|
||||
// Description: Deletes the spell object immediately.
|
||||
/obj/item/spell/dropped()
|
||||
/obj/item/spell/dropped(mob/user)
|
||||
..()
|
||||
spawn(1)
|
||||
if(src)
|
||||
qdel(src)
|
||||
|
||||
Reference in New Issue
Block a user