adds vore back (why this was removed, I have no idea)

This commit is contained in:
LetterJay
2017-04-14 13:40:44 -05:00
parent 097d4326c3
commit d0347280ce
60 changed files with 2310 additions and 7 deletions
+37
View File
@@ -0,0 +1,37 @@
//The base hooks themselves
//New() hooks
/hook/client_new
/hook/mob_new
/hook/living_new
/hook/carbon_new
/hook/human_new
/hook/simple_animal_new
//Hooks for interactions
/hook/living_attackby
//
//Hook helpers to expand hooks to others
//
/hook/mob_new/proc/chain_hooks(mob/M)
var/result = 1
if(isliving(M))
if(!hook_vr("living_new",args))
result = 0
if(iscarbon(M))
if(!hook_vr("carbon_new",args))
result = 0
if(ishuman(M))
if(!hook_vr("human_new",args))
result = 0
//Return 1 to superhook
return result