Quote:
Originally Posted by Ganedar
i was able to reproduce this bug and fixed it by adding to Bot:  eath,
if(HasGroup())
Bot::RemoveBotFromGroup(this, GetGroup());
|
Why not use a this pointer if it's in Bot, or just write
if(HasGroup())
RemoveBotFromGroup(GetGroup())