quantum-space-buddies/QSB/EchoesOfTheEye/Ghosts/Messages/FaceVelocityMessage.cs

20 lines
480 B
C#
Raw Normal View History

2022-04-10 13:33:09 +00: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);
}
}