Skip to content
Merged
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
6 changes: 3 additions & 3 deletions code/modules/admin/verbs/randomverbs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
src << "Only administrators may use this command."
return

var/msg = sanitize(input("Message:", text("Subtle PM to [M.key]")) as text)
var/msg = input("Message:", text("Subtle PM to [M.key]")) as text)

if (!msg)
return
Expand Down Expand Up @@ -109,7 +109,7 @@
src << "Only administrators may use this command."
return

var/msg = sanitize(input("Message:", text("Enter the text you wish to appear to everyone:")) as text)
var/msg = input("Message:", text("Enter the text you wish to appear to everyone:")) as text)

if (!msg)
return
Expand All @@ -132,7 +132,7 @@
if(!M)
return

var/msg = sanitize(input("Message:", text("Enter the text you wish to appear to your target:")) as text)
var/msg = input("Message:", text("Enter the text you wish to appear to your target:")) as text)

if( !msg )
return
Expand Down