You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whenever someone write something in chat, and a plugin returns Plugin_Changed in the forward, if the text contains { it becomes {{}, more test cases: Hello {} -> No Changes Hello {world} -> No Changes Hello {{} -> Hello {} Hello {{}} -> Hello {}} {{{{{{{{{{{{{{{{{{{{{{{{{{{{{ -> {{} - Any brackets count. {{{{{{{{{{{{{{{{{{{{{{{{{{{{{} -> {} - Any brackets count.
I solved this issue by replacing this part of code:
Whenever someone write something in chat, and a plugin returns
Plugin_Changed
in the forward, if the text contains{
it becomes{{}
, more test cases:Hello {}
-> No ChangesHello {world}
-> No ChangesHello {{}
->Hello {}
Hello {{}}
->Hello {}}
{{{{{{{{{{{{{{{{{{{{{{{{{{{{{
->{{}
- Any brackets count.{{{{{{{{{{{{{{{{{{{{{{{{{{{{{}
->{}
- Any brackets count.I solved this issue by replacing this part of code:
https://github.com/Drixevel/Chat-Processor/blob/b2eec276b4c2cd7ed6f5c9a43d564fbf13f2e9f1/scripting/include/colorvariables.inc#L366-L408
with
I don't know if it could cause performance issues, or other problems in some games, I've tested it only on CSGO,
The text was updated successfully, but these errors were encountered: