As the title says, when I copy stuff in jass tags from a post, it just ignores the new lines( before the snow theme too ), and the whole stuff will be copied as one line. I don't know why, before it was working. I am using Nightly( some sort of firefox ).
JASS:
library AnotherLibrary initializer InfiniteLoop requires Test
function Loop takes nothing returns nothing
call BJDebugMsg( I2S( GetEnumInteger( ) ) )
endfunction
function InfiniteLoop takes nothing returns nothing
call ClearTextMessages( )
call BunchONumbers.GenNumbers( 10 )
call ForEachInteger( function Loop )
call TriggerSleepAction( 0 )
call ExecuteFunc( "InfiniteLoop" )
endfunction
endlibrary
JASS:
library AnotherLibrary initializer InfiniteLoop requires Test function Loop takes nothing returns nothing call BJDebugMsg( I2S( GetEnumInteger( ) ) ) endfunction function InfiniteLoop takes nothing returns nothing call ClearTextMessages( ) call BunchONumbers.GenNumbers( 10 ) call ForEachInteger( function Loop ) call TriggerSleepAction( 0 ) call ExecuteFunc( "InfiniteLoop" ) endfunction endlibrary