HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

"[I]" becomes "[i]" in JASS tags

03-13-2007, 01:45 AM#1
Pyrogasm
I've just noticed this: whenever the letter "I" is typed as an array index, and is they wrapped with JASS tags, it shows up as a lowercase I. Example (quote me to see what I really typed):

Collapse JASS:
loop
    set I = I+1
    exitwhen I > 9
    call DestroyEffect(SFX[i])
endloop
03-13-2007, 02:36 AM#2
Vexorian
It is a bug with the vBulleting bbcode parser, it would change the case of them even in blocks that have it disabled which sucks.

the solution would be to actually follow naming conventions and use a lower case i
03-13-2007, 02:39 AM#3
Pyrogasm
Blasphemous.


So... it's not possible to fix it?
03-13-2007, 06:21 AM#4
Earth-Fury
Quote:
Originally Posted by Pyrogasm
Blasphemous.


So... it's not possible to fix it?

of course it is. It would involve looking throgh the BBCode parsers code and modifying it as needed. (i haven't seen this part of VBs source, so im kinda guessing) Which, i imagine, wouldn't be that easy. Guess you'll have to learn2lower-case things ;) Or hope someone has the spare time and a desire to fix it.