Numbered Steps to Reproduce Problem:
1) Create a project with the code provided below.
2) Use the test() verb.
3) Observe that while each line would be expected to appear on it's own line, line 3, 4, and 5 appear on the same line.
Code Snippet (if applicable) to Reproduce Problem:
mob
verb
test()
world << "Line 1" //Works
world << "Line 2" //Works
world << "Line 3 <br>Line 4 <BR>Line 5" //Doesn't work
world << "Line 6 \nLine 7" //Works
world << "Line 8" //Works
Expected Results: For BR tags to create a new line.
Actual Results: BR tags do not create a new line.
Does the problem occur:
Every time? Or how often? Every time.
In other games? Yes.
In other user accounts? Untested.
On other computers? Untested.
When does the problem NOT occur? When using /n.
Workarounds: Use /n.