List BBCode Bug Inside JASS Tags[jass]//This is a test of[list]
function X takes nothing returns nothing
local integer list = 2
local integer array Test
set Test[1] = 2
set Test[list]
= 3
set Test[3] = 4
endfunction[/jass]
Yields a mess up due to the [list] tag as follows:

JASS:
function X takes nothing returns nothing
local integer list = 2
local integer array Test
set Test[1] = 2
set Test[list]
= 3
set Test[3] = 4
endfunction
Try it for yourself, because vB edits the post you try it in as you post it to adjust for the list tag. When you test it, move the = 3 in the above noparse tags to where it should be and see how the site edits it.