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"