mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-20 03:25:49 +01:00
port ADMIN_VERB and friends (#30646)
* port ADMIN_VERB and friends * some renaming * dumb * one more rename * never search and replace this codebase * fix TM issues, more renaming * add a static analysis to shore up user verbs * fix double message on roundstart * remove macro we're not using yet * convert remaining playsounds verbs * convert more verbs i missed somehow * why is this a completely different signature than everything else * fix ui_interact arg * fix logging view and others * buncha issues caught in TM * fix mentor tickets ui * fix bug report viewing * moron
This commit is contained in:
committed by
GitHub
parent
f89b05ee88
commit
2a842644d5
@@ -28,19 +28,19 @@
|
||||
client.looc(entry)
|
||||
return TRUE
|
||||
if(ADMIN_CHANNEL)
|
||||
client.cmd_admin_say(entry)
|
||||
SSuser_verbs.invoke_verb(client, /datum/user_verb/admin_say, entry)
|
||||
return TRUE
|
||||
if(MENTOR_CHANNEL)
|
||||
client.cmd_mentor_say(entry)
|
||||
SSuser_verbs.invoke_verb(client, /datum/user_verb/mentor_say, entry)
|
||||
return TRUE
|
||||
if(DSAY_CHANNEL)
|
||||
client.dsay(entry)
|
||||
SSuser_verbs.invoke_verb(client, /datum/user_verb/dsay, entry)
|
||||
return TRUE
|
||||
if(DEV_CHANNEL)
|
||||
client.cmd_dev_say(entry)
|
||||
SSuser_verbs.invoke_verb(client, /datum/user_verb/dev_say, entry)
|
||||
return TRUE
|
||||
if(STAFF_CHANNEL)
|
||||
client.cmd_staff_say(entry)
|
||||
SSuser_verbs.invoke_verb(client, /datum/user_verb/staff_say, entry)
|
||||
return TRUE
|
||||
return FALSE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user