mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-30 16:36:41 +00:00
Make the CI happy
This commit is contained in:
parent
f8f3bb2421
commit
8103ff2e6f
2 changed files with 3 additions and 3 deletions
|
@ -43,8 +43,8 @@ namespace
|
|||
|
||||
MWMechanics::AiPackage::AiPackage(AiPackageTypeId typeId, const Options& options) :
|
||||
mTypeId(typeId),
|
||||
mReaction(MWBase::Environment::get().getWorld()->getPrng()),
|
||||
mOptions(options),
|
||||
mReaction(MWBase::Environment::get().getWorld()->getPrng()),
|
||||
mTargetActorRefId(""),
|
||||
mTargetActorId(-1),
|
||||
mRotateOnTheRunChecks(0),
|
||||
|
|
|
@ -107,6 +107,7 @@ namespace MWMechanics
|
|||
}
|
||||
|
||||
AiWanderStorage::AiWanderStorage() :
|
||||
mReaction(MWBase::Environment::get().getWorld()->getPrng()),
|
||||
mState(Wander_ChooseAction),
|
||||
mIsWanderingManually(false),
|
||||
mCanWanderAlongPathGrid(true),
|
||||
|
@ -116,8 +117,7 @@ namespace MWMechanics
|
|||
mAllowedNodes(),
|
||||
mTrimCurrentNode(false),
|
||||
mCheckIdlePositionTimer(0),
|
||||
mStuckCount(0),
|
||||
mReaction(MWBase::Environment::get().getWorld()->getPrng())
|
||||
mStuckCount(0)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue