you forget the basics to CQC!

This commit is contained in:
matttheficus
2021-08-06 13:30:04 -04:00
parent 9bf4d7ad84
commit 6a8c86571a
+8 -1
View File
@@ -289,8 +289,15 @@
/obj/item/CQC_manual/attack_self(mob/living/carbon/human/user)
if(!istype(user) || !user)
return
to_chat(user, "<span class='boldannounce'>You remember the basics of CQC.</span>")
if(user.mind && (user.mind.changeling || user.mind.vampire)) //Prevents changelings and vampires from being able to learn it
if(user.mind && user.mind.changeling) //Changelings
to_chat(user, "<span class ='warning'>We try multiple times, but we simply cannot grasp the basics of CQC!</span>")
return
else //Vampires
to_chat(user, "<span class ='warning'>Your blood lust distracts you from the basics of CQC!</span>")
return
to_chat(user, "<span class='boldannounce'>You remember the basics of CQC.</span>")
var/datum/martial_art/cqc/CQC = new(null)
CQC.teach(user)
user.drop_item()