If duplicate messages are printed in succession to the output, instead of printing the same message over and over e.g.:
Test
Test
Test
Test
it combines them like so: Test (x4)
However, when I clear the output, this counter persists. For instance, if I run the following code in the output:
for i=1,5 do wait(1) print("Test") end
and clear the output after the third iteration, the fourth and fifth iteration will print Test (x4) and Test (x5) instead of Test and Test (x2). Expected behavior is that the duplicate counter does not account for messages purged from the output.