therealhjrp
T
therealhjrp
Short question: the first code snippet (in JASS) works, but the second one (Lua) does not.
Why?
JASS:
function selectPriest takes nothing returns nothing
call SelectUnitSingle( gg_unit_hmpr_0000 )
endfunction
Lua:
function selectPriest()
SelectUnitSingle( gg_unit_hmpr_0000 )
end
Why?
