mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
pvp enabled (#17934)
This commit is contained in:
@@ -15,6 +15,9 @@
|
||||
mode = MODE_CHANGELING
|
||||
|
||||
/datum/saymode/changeling/handle_message(mob/living/user, message, datum/language/language)
|
||||
if(ismob(user.pulledby) && is_changeling(user.pulledby) && user.pulledby.grab_state >= GRAB_NECK)
|
||||
to_chat(user, span_warning("Our abilities are being dampened! We cannot speak through the hivemind!"))
|
||||
return FALSE
|
||||
switch(user.lingcheck())
|
||||
if(LINGHIVE_LINK)
|
||||
var/msg = span_changeling("<b>[user.mind]:</b> [message]")
|
||||
|
||||
@@ -11,7 +11,10 @@
|
||||
|
||||
/datum/action/changeling/headcrab/sting_action(mob/user)
|
||||
set waitfor = FALSE
|
||||
if(tgui_alert(usr,"Are we sure we wish to kill ourself and create a headslug?",,list("Yes", "No")) == "No")
|
||||
if(ismob(user.pulledby) && is_changeling(user.pulledby) && user.pulledby.grab_state >= GRAB_NECK)
|
||||
to_chat(user, span_warning("Our abilities are being dampened! We cannot use [src]!"))
|
||||
return
|
||||
if(tgui_alert(usr,"Are we sure we wish to kill ourself and create a headslug?",,list("Yes", "No")) != "Yes")
|
||||
return
|
||||
..()
|
||||
var/datum/mind/M = user.mind
|
||||
|
||||
Reference in New Issue
Block a user