From 3223d4eb9a501862967cd635838db95b9c28a00f Mon Sep 17 00:00:00 2001 From: Iajret <8430839+Iajret@users.noreply.github.com> Date: Tue, 26 Mar 2024 12:20:21 +0300 Subject: [PATCH] Partial Revert "[MIRROR] OpenDream TypeMaker Prep" (#2326) * Revert "[MIRROR] OpenDream TypeMaker Prep (#2301)" This reverts commit d4b601fef7a9a962f6f90891f2046cf5fdd5ece3. * non nova stuff shouldn't be reverted, probably? * and this too --- modular_nova/modules/mentor/code/mentorhelp.dm | 2 +- modular_nova/modules/mentor/code/mentorsay.dm | 2 +- modular_nova/modules/verbs/code/looc.dm | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modular_nova/modules/mentor/code/mentorhelp.dm b/modular_nova/modules/mentor/code/mentorhelp.dm index a6db0c5b7f5..d3bc2f343bd 100644 --- a/modular_nova/modules/mentor/code/mentorhelp.dm +++ b/modular_nova/modules/mentor/code/mentorhelp.dm @@ -1,4 +1,4 @@ -/client/verb/mentorhelp(msg as text|null) +/client/verb/mentorhelp(msg as text) set category = "Mentor" set name = "Mentorhelp" diff --git a/modular_nova/modules/mentor/code/mentorsay.dm b/modular_nova/modules/mentor/code/mentorsay.dm index 01cc4e6397c..77d83d3c936 100644 --- a/modular_nova/modules/mentor/code/mentorsay.dm +++ b/modular_nova/modules/mentor/code/mentorsay.dm @@ -1,4 +1,4 @@ -/client/proc/cmd_mentor_say(msg as text|null) +/client/proc/cmd_mentor_say(msg as text) set category = "Mentor" set name = "Msay" //Gave this shit a shorter name so you only have to time out "msay" rather than "mentor say" to use it --NeoFite set hidden = 1 diff --git a/modular_nova/modules/verbs/code/looc.dm b/modular_nova/modules/verbs/code/looc.dm index fba9af46577..77eb5d02d68 100644 --- a/modular_nova/modules/verbs/code/looc.dm +++ b/modular_nova/modules/verbs/code/looc.dm @@ -1,11 +1,11 @@ -/client/verb/looc(msg as text|null) +/client/verb/looc(msg as text) set name = "LOOC" set desc = "Local OOC, seen only by those in view." set category = "OOC" looc_message(msg) -/client/verb/looc_wallpierce(msg as text|null) +/client/verb/looc_wallpierce(msg as text) set name = "LOOC (Wallpierce)" set desc = "Local OOC, seen by anyone within 7 tiles of you." set category = "OOC"