Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
Patch 1.24 fixed the return bug. If your map uses that (or uses a resource that uses that bug), then it will no longer work. There some libraries to fix them--e.g. faux handle vars on wc3c.net, but they may not work 100%. They'll at least let you play. Often times you'll need to recode those parts.
Occasionally, though, it may be just one function (H2I) that is the culprit. Replacing that is simple:
JASS:
function H2I takes handle h returns integer
return h
return 0
endfunction
// can be
function H2I takes handle h returns integer
return GetHandleId(h)
endfunction
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.