mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-17 11:43:25 +00:00
Use operator<< for ESM::RefId
This commit is contained in:
parent
d64eea2fc6
commit
1258bdf40a
@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user