_actor.broadcastPacket(msg);
if (pos != null)
{
// Send a Server->Client packet StopRotation to the actor and all L2PcInstance in its _knownPlayers
StopRotation sr = new StopRotation(_actor, pos.heading);
_actor.sendPacket(sr);
_actor.broadcastPacket(sr);
}
}
}