- Joined
- Feb 23, 2007
- Messages
- 1,030
I attach a struct to a timer using
Do I need to
when I destroy the timer (Probably wouldn't have this problem if I tried a timer recycler...)
Should I use this instead?
JASS:
call SetHandleInt(t,"str",str)
Do I need to
JASS:
call FlushHandleLocals(t)
when I destroy the timer (Probably wouldn't have this problem if I tried a timer recycler...)
JASS:
call FlushStoredInteger(LocalVars(),I2S(H2I(u)),"str")
call FlushStoredInteger(LocalVars(),I2S(H2I(t)),"str")
Should I use this instead?