From 932bdfd32589bc750fdb0dd43d99b0f11b9de2ba Mon Sep 17 00:00:00 2001
From: kevinz000 <2003111+kevinz000@users.noreply.github.com>
Date: Sun, 15 Dec 2019 21:57:22 -0700
Subject: [PATCH] kay
---
.../{client/verbs => mob/living/silicon}/custom_holoform.dm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
rename code/modules/{client/verbs => mob/living/silicon}/custom_holoform.dm (85%)
diff --git a/code/modules/client/verbs/custom_holoform.dm b/code/modules/mob/living/silicon/custom_holoform.dm
similarity index 85%
rename from code/modules/client/verbs/custom_holoform.dm
rename to code/modules/mob/living/silicon/custom_holoform.dm
index b32ed0f1dd..e4e7b5317e 100644
--- a/code/modules/client/verbs/custom_holoform.dm
+++ b/code/modules/mob/living/silicon/custom_holoform.dm
@@ -1,14 +1,16 @@
-/client/verb/clear_custom_holoform()
+/mob/living/silicon/verb/clear_custom_holoform()
set name = "Clear Custom Holoform"
set desc = "Clear your current custom holoform"
+ set category = "OOC"
prefs?.custom_holoform_icon = null
prefs?.cached_holoform_icons = null
to_chat(src, "Holoform removed.")
-/client/verb/set_custom_holoform()
+/mob/living/silicon/verb/set_custom_holoform()
set name = "Set Custom Holoform"
set desc = "Set your custom holoform using your current preferences slot and a specified set of gear."
+ set category = "OOC"
if(prefs.last_custom_holoform > world.time - CUSTOM_HOLOFORM_DELAY)
to_chat(src, "You are attempting to change custom holoforms too fast!")