Makes Alraune variable on only /human. Changes a few 0's to FALSE and a few 1's to TRUE.

This commit is contained in:
Cameron653
2018-06-16 01:32:55 -04:00
parent 864c4ca106
commit da4773ebdb
6 changed files with 11 additions and 11 deletions
-1
View File
@@ -22,7 +22,6 @@
var/tail_alt = 0 // Tail layer toggle.
var/can_be_drop_prey = 0
var/can_be_drop_pred = 1 // Mobs are pred by default.
var/fruit_type = "apple" // Not used outside of Alraunes. This is on all /living just in case some other mob gets it or it's being bussed in an event. Mobs with fruit, anyone?
//
// Hook for generic creation of stuff on new creatures
@@ -2023,8 +2023,8 @@
self_emote_descriptor = list("grab", "pick", "snatch")
assigned_proc = /mob/living/carbon/human/proc/use_reagent_implant_fruit_implant
/obj/item/weapon/implant/reagent_generator/fruit_implant/implanted(mob/living/carbon/source)
if(source.species.name != "Alraune")
/obj/item/weapon/implant/reagent_generator/fruit_implant/implanted(mob/living/carbon/human/source)
if(source.species.name != SPECIES_ALRAUNE)
to_chat(source, "<span class='notice'>Perhaps using this implant as a non Alraune was a bad idea...</span>") //You wasted it. Good job.
return 1
processing_objects += src