We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2aa27cc commit 86b57b8Copy full SHA for 86b57b8
lua/starfall/libs_sv/players.lua
@@ -291,7 +291,7 @@ function player_methods:say(text, teamOnly)
291
if instance.player ~= ply then SF.Throw("Player say can only be used on yourself!", 2) end
292
if CurTime() < (ply.sf_say_cd or 0) then SF.Throw("Player say must wait 0.5s between calls!", 2) end
293
ply.sf_say_cd = CurTime() + 0.5
294
- Ply_Say(ply, text, teamOnly)
+ instance:runExternal(Ply_Say, ply, text, teamOnly)
295
end
296
297
--- Sets the armor of the player.
0 commit comments