mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 12:08:28 +01:00
Revert "Merge pull request #16240 from ShadowLarkens/revert"
This reverts commit885171f985, reversing changes made to3e314f8064.
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
set name = "Say verb"
|
||||
set category = "IC"
|
||||
|
||||
if(is_preference_enabled(/datum/client_preference/tgui_say))
|
||||
if(client?.prefs?.read_preference(/datum/preference/toggle/tgui_say))
|
||||
winset(src, null, "command=[client.tgui_say_create_open_command(SAY_CHANNEL)]")
|
||||
return
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
set name = "Me verb"
|
||||
set category = "IC"
|
||||
|
||||
if(is_preference_enabled(/datum/client_preference/tgui_say))
|
||||
if(client?.prefs?.read_preference(/datum/preference/toggle/tgui_say))
|
||||
winset(src, null, "command=[client.tgui_say_create_open_command(ME_CHANNEL)]")
|
||||
return
|
||||
|
||||
@@ -47,11 +47,11 @@
|
||||
set name = "Whisper verb"
|
||||
set category = "IC"
|
||||
|
||||
if(is_preference_enabled(/datum/client_preference/tgui_say))
|
||||
if(client?.prefs?.read_preference(/datum/preference/toggle/tgui_say))
|
||||
winset(src, null, "command=[client.tgui_say_create_open_command(WHIS_CHANNEL)]")
|
||||
return
|
||||
|
||||
if(is_preference_enabled(/datum/client_preference/show_typing_indicator_subtle))
|
||||
if(client?.prefs?.read_preference(/datum/preference/toggle/show_typing_indicator_subtle))
|
||||
client?.start_thinking()
|
||||
client?.start_typing()
|
||||
var/message = tgui_input_text(usr, "Type your message:", "Whisper")
|
||||
@@ -65,11 +65,11 @@
|
||||
set category = "IC"
|
||||
set desc = "Emote to nearby people (and your pred/prey)"
|
||||
|
||||
if(is_preference_enabled(/datum/client_preference/tgui_say))
|
||||
if(client?.prefs?.read_preference(/datum/preference/toggle/tgui_say))
|
||||
winset(src, null, "command=[client.tgui_say_create_open_command(SUBTLE_CHANNEL)]")
|
||||
return
|
||||
|
||||
if(is_preference_enabled(/datum/client_preference/show_typing_indicator_subtle))
|
||||
if(client?.prefs?.read_preference(/datum/preference/toggle/show_typing_indicator_subtle))
|
||||
client?.start_thinking()
|
||||
client?.start_typing()
|
||||
var/message = tgui_input_text(usr, "Type your message:", "Subtle", multiline = TRUE)
|
||||
|
||||
Reference in New Issue
Block a user