We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d1483ac + 6c617af commit de32207Copy full SHA for de32207
1 file changed
gamemode/libs/sh_chatbox.lua
@@ -231,6 +231,10 @@ if (CLIENT) then
231
232
hook.Add("ChatTextChanged", "nut_Typing", function(text)
233
if (nut.config.showTypingText) then
234
+ if (string.sub(text, 1, 3) == "/pm") then
235
+ text = "PM..."
236
+ end
237
+
238
if (nextSend < CurTime()) then
239
netstream.Start("nut_Typing", text)
240
nextSend = CurTime() + 0.25
0 commit comments