Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Partial Revert "[MIRROR] OpenDream TypeMaker Prep" #2326

Merged
merged 3 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modular_nova/modules/mentor/code/mentorhelp.dm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/client/verb/mentorhelp(msg as text|null)
/client/verb/mentorhelp(msg as text)
set category = "Mentor"
set name = "Mentorhelp"

Expand Down
2 changes: 1 addition & 1 deletion modular_nova/modules/mentor/code/mentorsay.dm
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions modular_nova/modules/verbs/code/looc.dm
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Loading