This commit is contained in:
JohnCorby 2022-04-09 14:56:33 -07:00
parent 2594ddc35a
commit bc297df104

View File

@ -19,7 +19,7 @@ internal class PathfindLocalPositionMessage : QSBWorldObjectMessage<QSBGhostCont
return;
}
DebugLog.DebugWrite($"{WorldObject} Pathfind to local position {Data.localPosition} with speed:{Data.speed}, acceleration:{Data.acceleration}");
DebugLog.DebugWrite($"{WorldObject.AttachedObject.name} Pathfind to local position {Data.localPosition} with speed:{Data.speed}, acceleration:{Data.acceleration}");
WorldObject.AttachedObject.PathfindToLocalPosition(Data.localPosition, Data.speed, Data.acceleration);
}
}