20 lines
480 B
C#
Raw Normal View History

2022-04-10 14:33:09 +01:00
using QSB.EchoesOfTheEye.Ghosts.WorldObjects;
using QSB.Messaging;
using QSB.Utility;
namespace QSB.EchoesOfTheEye.Ghosts.Messages;
internal class FaceVelocityMessage : QSBWorldObjectMessage<QSBGhostController>
{
public override void OnReceiveRemote()
{
if (QSBCore.IsHost)
{
DebugLog.ToConsole("Error - Received FaceVelocityMessage on host. Something has gone horribly wrong!", OWML.Common.MessageType.Error);
return;
}
WorldObject.FaceVelocity(true);
}
}