mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Merged in Glorf/ryzomcore/fix_freezing (pull request #143)
Fix a bug where a monster could be stuck after dropping aggro while rooted
This commit is contained in:
commit
c551307ff7
1 changed files with 1 additions and 1 deletions
|
@ -1060,7 +1060,6 @@ void CMovementMagnet::update(uint32 waitTime, uint32 ticksSinceLastUpdate, bool
|
|||
BeginMove:
|
||||
_State=Movement_Move;
|
||||
getNewDestination (_BotFauna.wpos(), _denyFlags); // drop through to Move
|
||||
_Speed=_BotFauna.walkSpeed();
|
||||
|
||||
case Movement_Move:
|
||||
{
|
||||
|
@ -1070,6 +1069,7 @@ void CMovementMagnet::update(uint32 waitTime, uint32 ticksSinceLastUpdate, bool
|
|||
float distToDest=(float)_PathCont.getDestination().quickDistTo(_BotFauna.pos());
|
||||
distToDest-=((_BotFauna.getPersistent().getChildIndex()&7)+1.5f);
|
||||
|
||||
_Speed=_BotFauna.walkSpeed();
|
||||
float dist=_Speed*ticksSinceLastUpdate;
|
||||
CAIVector lastPos=_BotFauna.pos();
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue