JASS Tags Bug

Status
Not open for further replies.
Level 17
Joined
Jun 17, 2007
Messages
1,433
It seems that arrays inside JASS tags are completely bugged. This is an example of two scripts that should appear the same.

Code:
globals
    integer array Test[10]
endglobals
JASS:
globals
    integer array Test[10]
endglobals
 
Last edited by a moderator:
JASS:
[]

Neat. I'll see what I can do.

--

I think I've found the problem.

You convert & to & and then convert [ to [ and ] to ], while in reality you have already converted [ to [ (etc). Thus, you should convert &#91 to [ (etc), or just convert brackets back before &
 
Last edited by a moderator:
Status
Not open for further replies.
Back
Top