a typo cause there is actually no character length limitation of system message announcement display:
at widgets/redux/chatqueue.lua@line 34
and at widgets/redux/scrollablechatqueue.lua@line 71:
self.message_max_char probaly should be self.message_max_chars
I believe it is a inconsequential problem cuz only admin can publish an announcement and it seems there is no reason to restrict the length of a system announcement, but correct it or just directly remove the limitation is good to clearify the intention of codes.
Steps to Reproduce
input the following codes in the console screen and you would see a very long announcement and without limitation:
s = '' for i = 1, 1000 do s = s .. '1' end TheNet:Announce(s)
There are no comments to display.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now