mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 23:53:52 +00:00
printAIPackage: changed field name from Unknown to ShouldRepeat too.
This commit is contained in:
parent
5c7e39a92f
commit
d536ff3cdc
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ void printAIPackage(ESM::AIPackage p)
|
||||||
std::cout << " Duration: " << p.mWander.mDuration << std::endl;
|
std::cout << " Duration: " << p.mWander.mDuration << std::endl;
|
||||||
std::cout << " Time of Day: " << (int)p.mWander.mTimeOfDay << std::endl;
|
std::cout << " Time of Day: " << (int)p.mWander.mTimeOfDay << std::endl;
|
||||||
if (p.mWander.mShouldRepeat != 1)
|
if (p.mWander.mShouldRepeat != 1)
|
||||||
std::cout << " Unknown: " << (int)p.mWander.mShouldRepeat << std::endl;
|
std::cout << " Should repeat: " << (bool)p.mWander.mShouldRepeat << std::endl;
|
||||||
|
|
||||||
std::cout << " Idle: ";
|
std::cout << " Idle: ";
|
||||||
for (int i = 0; i != 8; i++)
|
for (int i = 0; i != 8; i++)
|
||||||
|
|
Loading…
Reference in a new issue