From 1770341ee38776c117fcf9a4821bf0689095ff70 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Thu, 26 Oct 2017 13:56:10 -0400 Subject: [PATCH] converts vore verbs to actual verbs --- code/modules/vore/eating/living_vr.dm | 10 +++++----- code/modules/vore/eating/vorepanel_vr.dm | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index b7ace801cd..6c3b331126 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -13,12 +13,12 @@ // Hook for generic creation of stuff on new creatures // /hook/living_new/proc/vore_setup(mob/living/M) - M.verbs += /mob/living/proc/escapeOOC - M.verbs += /mob/living/proc/lick + M.verbs += /mob/living/verb/escapeOOC + M.verbs += /mob/living/verb/lick if(M.no_vore) //If the mob isn's supposed to have a stomach, let's not give it an insidepanel so it can make one for itself, or a stomach. M << "The creature that you are can not eat others." return TRUE - M.verbs += /mob/living/proc/insidePanel + M.verbs += /mob/living/verb/insidePanel //Tries to load prefs if a client is present otherwise gives freebie stomach if(!M.vore_organs || !M.vore_organs.len) @@ -289,7 +289,7 @@ // OOC Escape code for pref-breaking or AFK preds // -/mob/living/proc/escapeOOC() +/mob/living/verb/escapeOOC() set name = "Animal Escape" set category = "Vore" @@ -373,7 +373,7 @@ // // Clearly super important. Obviously. // -/mob/living/proc/lick(var/mob/living/tasted in oview(1)) +/mob/living/verb/lick(var/mob/living/tasted in oview(1)) set name = "Lick Someone" set category = "Vore" set desc = "Lick someone nearby!" diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index 0f01a4c9e3..ac367e3aad 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -8,7 +8,7 @@ #define BELLIES_DESC_MAX 1024 #define FLAVOR_MAX 40 -/mob/living/proc/insidePanel() +/mob/living/verb/insidePanel() set name = "Vore Panel" set category = "Vore"