Changes messages, based on feedback

This commit is contained in:
Jack Edge
2016-04-24 15:59:57 +01:00
parent 97b5e3918c
commit 1f2c405763
2 changed files with 5 additions and 3 deletions
+3 -3
View File
@@ -531,10 +531,10 @@
/obj/item/device/wormhole_jaunter/proc/chasm_react(mob/user)
if(user.get_item_by_slot(slot_belt) == src)
user.visible_message("<span class='warning'>[user]'s [src] activates, saving them from the chasm!</span>")
user << "Your [src] activates, saving you from the chasm!</span>")
activate(user)
else
user.visible_message("<span class='warning'>The [src] is not attached to [user]'s belt, preventing it from saving them from the chasm. RIP.</span>")
user << "The [src] is not attached to your belt, preventing it from saving you from the chasm. RIP.</span>")
/obj/effect/portal/wormhole/jaunt_tunnel
@@ -1061,7 +1061,7 @@
/obj/item/weapon/hivelordstabilizer/afterattack(obj/item/organ/internal/M, mob/user)
var/obj/item/organ/internal/hivelord_core/C = M
if(!istype(C, /obj/item/organ/internal/hivelord_core))
user << "<span class='warning'>The stabilizer only works on legion's hearts.</span>"
user << "<span class='warning'>The stabilizer only works on certain types of monster organs, generally regenerative in nature.</span>"
return ..()
C.preserved = 1
user << "<span class='notice'>You inject the [M] with the stabilizer. It will no longer go inert.</span>"
+2
View File
@@ -576,6 +576,8 @@
var/mob/living/carbon/human/H = AM
if(istype(H.belt, /obj/item/device/wormhole_jaunter))
var/obj/item/device/wormhole_jaunter/J = H.belt
// To freak out any bystanders
visible_message("[H] falls into [src]!")
J.chasm_react(H)
return
drop(AM)