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
Currently the problem is that every time a new message comes in it overwrites the user's input buffer. This causes that newly written messages are sent correctly, but are no longer displayed correctly on the screen of the writer.
Approach
One way would be to clear the console every time the user recives a new message. With this approach a new Problem is created. All written messages have to be saved on the server side and have to be send on each message so that the user will not notice that his console was cleared.
The text was updated successfully, but these errors were encountered:
Easiest way would be to have a global array/queue for the history. BUT then we would ignore private messages and commands. So I guess the history has to be saved for each user
Problem
Currently the problem is that every time a new message comes in it overwrites the user's input buffer. This causes that newly written messages are sent correctly, but are no longer displayed correctly on the screen of the writer.
Approach
One way would be to clear the console every time the user recives a new message. With this approach a new Problem is created. All written messages have to be saved on the server side and have to be send on each message so that the user will not notice that his console was cleared.
The text was updated successfully, but these errors were encountered: