- Joined
- Dec 12, 2011
- Messages
- 116
Okay I have the following JASS code:
Should I add
at the end of it?
JASS:
function myFunc takes nothing returns nothing
local trigger t = CreateTrigger( )
call TriggerAddAction( t, function myFunc2 )
call TriggerExecute( t )
endfunction
Should I add
JASS:
set t = null
at the end of it?