ID:2519007
 
Resolved
text2ascii() on constant text with no index argument was incorrectly handled in the compiler.
BYOND Version:513.1492
Operating System:Linux
Web Browser:Firefox 69.0
Applies to:Dream Maker
Status: Resolved (513.1493)

This issue has been resolved.
Code Snippet (if applicable) to Reproduce Problem:
/client/New()
src << text2ascii("ç")
src << text2ascii("ç", 1)
src << text2ascii("Ç")
src << text2ascii("Ç", 1)


Expected Results:

231
231
199
199

Actual Results:

195
231
195
199
Lummox JR resolved issue with message:
text2ascii() on constant text with no index argument was incorrectly handled in the compiler.