mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 21:23:52 +00:00
Merge remote-tracking branch 'lgro/aicombat'
This commit is contained in:
commit
ccf672630f
1 changed files with 2 additions and 2 deletions
|
@ -265,7 +265,7 @@ namespace MWMechanics
|
|||
|
||||
const ESM::Weapon *weapon = NULL;
|
||||
MWMechanics::WeaponType weaptype;
|
||||
float weapRange;
|
||||
float weapRange = 1.0f;
|
||||
|
||||
actorClass.getCreatureStats(actor).setMovementFlag(CreatureStats::Flag_Run, true);
|
||||
|
||||
|
@ -300,7 +300,7 @@ namespace MWMechanics
|
|||
else //is creature
|
||||
{
|
||||
weaptype = WeapType_HandToHand; //doesn't matter, should only reflect if it is melee or distant weapon
|
||||
weapRange = 150; //TODO: use true attack range (the same problem in Creature::hit)
|
||||
weapRange = 150.0f; //TODO: use true attack range (the same problem in Creature::hit)
|
||||
}
|
||||
|
||||
float rangeAttack;
|
||||
|
|
Loading…
Reference in a new issue