Hotfix - Vaurca Language Removal (#447)

You used datums instead of text.
This commit is contained in:
skull132
2016-06-24 17:09:13 +03:00
committed by GitHub
parent 03cf88ce2f
commit bdb040bf9f
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -182,23 +182,23 @@
obj/item/organ/vaurca/neuralsocket/process()
if (is_broken())
if (all_languages["Hivenet"] in owner.languages)
owner.remove_language(all_languages["Hivenet"])
owner.remove_language("Hivenet")
owner << "\red Your mind suddenly grows dark as the unity of the Hive is torn from you."
else
if (!(all_languages["Hivenet"] in owner.languages))
owner.add_language(all_languages["Hivenet"])
owner.add_language("Hivenet")
owner << "\blue Your mind expands, and your thoughts join the unity of the Hivenet."
..()
/obj/item/organ/vaurca/neuralsocket/replaced(var/mob/living/carbon/human/target)
if (!(all_languages["Hivenet"] in owner.languages))
owner.add_language(all_languages["Hivenet"])
owner.add_language("Hivenet")
owner << "\blue Your mind expands, and your thoughts join the unity of the Hivenet."
..()
/obj/item/organ/vaurca/neuralsocket/removed(var/mob/living/carbon/human/target)
if(all_languages["Hivenet"] in target.languages)
target.remove_language(all_languages["Hivenet"])
target.remove_language("Hivenet")
target << "\red Your mind suddenly grows dark as the unity of the Hive is torn from you."
..()