- Joined
- Feb 2, 2006
- Messages
- 1,629
Whenever I work with BlzGroupAddGroupFast or use system using it, it seems completely broken. The target group stays empty and FirstOfGroup returns null.
For example with this function:
or are the parameter names simply wrong and reversed?
For example with this function:
JASS:
function CopyGroup takes group whichGroup returns group
local group copy = CreateGroup()
//call BlzGroupAddGroupFast(copy, whichGroup) // seems broken
call GroupAddGroup(whichGroup, copy)
return copy
endfunction