diff --git a/code/modules/admin/verbs/adminhelp_vr.dm b/code/modules/admin/verbs/adminhelp_vr.dm
index f2df8e4eb2..a6dde89330 100644
--- a/code/modules/admin/verbs/adminhelp_vr.dm
+++ b/code/modules/admin/verbs/adminhelp_vr.dm
@@ -15,6 +15,8 @@
query_string += "&admin_number_afk=[afkmins.len]"
world.Export("[config.chat_webhook_url]?[query_string]")
+
+/* //CHOMPStation Addition 14/1/20 Ksc - Committing this out to be replaced with a improved request spice.
/client/verb/adminspice()
set category = "Admin"
set name = "Request Spice"
@@ -36,3 +38,37 @@
usr.verbs -= /client/verb/adminspice
spawn(6000)
usr.verbs += /client/verb/adminspice // 10 minute cool-down for spice request
+*/
+
+/mob/verb/Spice(msg as text) //CHOMPStation Addition 14/1/20 Ksc - The improved request spice command.
+ set category = "Admin"
+ set name = "Request Spice"
+ set desc = "Request for admins to challange your shift"
+
+ if(say_disabled) //This is here to try to identify lag problems
+ usr << "Speech is currently admin-disabled."
+ return
+
+ msg = sanitize(msg)
+ if(!msg) return
+
+ if(usr.client)
+ if(msg)
+ client.handle_spam_prevention(MUTE_PRAY)
+ if(usr.client.prefs.muted & MUTE_PRAY)
+ usr << " No spice for you (muted)."
+ return
+
+ var/image/cross = image('icons/obj/food.dmi',"enchiladas")
+ msg = "\icon[cross] SPICE: [key_name(src, 1)] (?) (PP) (VV) (SM) ([admin_jump_link(src, src)]) (CA) (SC) (SMITE): [msg]"
+
+ for(var/client/C in admins)
+ if(R_ADMIN & C.holder.rights)
+ if(C.is_preference_enabled(/datum/client_preference/admin/show_chat_prayers))
+ C << msg
+ C << 'sound/effects/ding.ogg'
+ usr << "Be wary of the cookie."
+
+ feedback_add_details("admin_verb","spicech") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
+ //log_admin("HELP: [key_name(src)]: [msg]")
+