ID:643953
 
Resolved
BYOND Version:494.1129
Operating System:Windows 7 Home Premium 64-bit
Web Browser:Firefox 11.0
Applies to:Dream Seeker
Status: Resolved (494.1030)

This issue has been resolved.
Descriptive Problem Summary:
Text disappears when space is at the end of a new line.

Numbered Steps to Reproduce Problem:

Code Snippet (if applicable) to Reproduce Problem:
OsText
parent_type = /obj
screen_loc = "1:16,1"
mob
var
OsText/textObj
verb
Bugged()
{
text = "asdfghjk "
if(!textObj)
{
textObj = new()
client.screen += textObj
}
textObj.maptext_width = 32
textObj.maptext = text
}
NotBugged()
{
text = "asdfghjk "
if(!textObj)
{
textObj = new()
client.screen += textObj
}
textObj.maptext_width = 32
textObj.maptext = text
}


Expected Results:
Visible Text
Actual Results:
Invisible text

Workarounds:
Trim any spaces at the end.
Tom changed status to 'Verified'
Tom resolved issue