Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 5e77924

Browse files
committed
Update mutations.dm
1 parent b81171e commit 5e77924

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

code/modules/antagonists/changeling/powers/mutations.dm

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929

3030
/datum/action/changeling/weapon/proc/check_weapon(mob/user, obj/item/hand_item)
3131
if(istype(hand_item, weapon_type))
32+
if(istype(hand_item, /obj/item/melee/arm_blade/slime))
33+
return
3234
user.temporarilyRemoveItemFromInventory(hand_item, TRUE) //DROPDEL will delete the item
3335
if(!silent)
3436
playsound(user, 'sound/effects/blobattack.ogg', 30, TRUE)
@@ -206,13 +208,19 @@
206208
return
207209

208210
if(A.hasPower())
209-
user.visible_message(span_warning("[user] jams [src] into the airlock and starts prying it open!"), span_warning("We start forcing the airlock open."), //yogs modified description
211+
if(istype(src, /obj/item/melee/arm_blade/slime))
212+
user.visible_message(span_warning("[user] jams [src] into the airlock and starts prying it open!"), span_warning("You start forcing the airlock open."), span_italics("You hear a metal screeching sound."))
213+
else
214+
user.visible_message(span_warning("[user] jams [src] into the airlock and starts prying it open!"), span_warning("We start forcing the airlock open."), //yogs modified description
210215
span_italics("You hear a metal screeching sound."))
211216
playsound(A, 'sound/machines/airlock_alien_prying.ogg', 100, 1)
212217
if(!do_after(user, 6 SECONDS, A))
213218
return
214219
//user.say("Heeeeeeeeeerrre's Johnny!")
215-
user.visible_message(span_warning("[user] forces the airlock to open with [user.p_their()] [src]!"), span_warning("We force the airlock to open."), //yogs modified description
220+
if(istype(src, /obj/item/melee/arm_blade/slime))
221+
user.visible_message(span_warning("[user] forces the airlock to open with [user.p_their()] [src]!"), span_warning("We force the airlock to open."), span_italics("You hear a metal screeching sound."))
222+
else
223+
user.visible_message(span_warning("[user] forces the airlock to open with [user.p_their()] [src]!"), span_warning("We force the airlock to open."), //yogs modified description
216224
span_italics("You hear a metal screeching sound."))
217225
A.open(2)
218226

0 commit comments

Comments
 (0)