1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-04-02 12:36:39 +00:00

Use operator<< for ESM::RefId

This commit is contained in:
elsid 2023-03-06 22:19:29 +01:00
parent d64eea2fc6
commit 1258bdf40a
No known key found for this signature in database
GPG key ID: 4DE04C198CBA7625

View file

@ -355,8 +355,7 @@ namespace MWScript
MWMechanics::AiFollow followPackage(actorID, duration, x, y, z, repeat);
ptr.getClass().getCreatureStats(ptr).getAiSequence().stack(followPackage, ptr);
Log(Debug::Info) << "AiFollow: " << actorID.getRefIdString() << ", " << x << ", " << y << ", " << z
<< ", " << duration;
Log(Debug::Info) << "AiFollow: " << actorID << ", " << x << ", " << y << ", " << z << ", " << duration;
}
};
@ -396,8 +395,7 @@ namespace MWScript
MWMechanics::AiFollow followPackage(actorID, cellID, duration, x, y, z, repeat);
ptr.getClass().getCreatureStats(ptr).getAiSequence().stack(followPackage, ptr);
Log(Debug::Info) << "AiFollow: " << actorID.getRefIdString() << ", " << x << ", " << y << ", " << z
<< ", " << duration;
Log(Debug::Info) << "AiFollow: " << actorID << ", " << x << ", " << y << ", " << z << ", " << duration;
}
};