18 lines
391 B
C#
Raw Normal View History

using QSB.EchoesOfTheEye.Ghosts.WorldObjects;
using QSB.Messaging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QSB.EchoesOfTheEye.Ghosts.Messages;
2023-07-28 19:30:57 +01:00
public class StopFacingMessage : QSBWorldObjectMessage<QSBGhostController>
{
public override void OnReceiveRemote()
{
WorldObject.StopFacing(true);
}
}