format messages

This commit is contained in:
JohnCorby 2022-04-10 15:02:32 -07:00
parent 11cacf8f9f
commit a966c83d64
3 changed files with 2 additions and 10 deletions

View File

@ -19,4 +19,4 @@ internal class ChangeActionMessage : QSBWorldObjectMessage<QSBGhostBrain, GhostA
DebugLog.DebugWrite($"{WorldObject.AttachedObject._name} Change action to {Data}");
WorldObject.ChangeAction(WorldObject.GetAction(Data), true);
}
}
}

View File

@ -4,10 +4,7 @@ using QSB.Messaging;
using QSB.Utility;
using QSB.WorldSync;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QSB.EchoesOfTheEye.Ghosts.Messages;
@ -20,7 +17,7 @@ internal class FaceNodeMessage : QSBWorldObjectMessage<QSBGhostController, (int
(int mapId, int nodeIndex, TurnSpeed turnSpeed, float nodeDelay, bool autoFocusLantern) ret = new();
ret.turnSpeed = turnSpeed;
ret.nodeDelay = nodeDelay; ;
ret.nodeDelay = nodeDelay;
ret.autoFocusLantern = autoFocusLantern;
var nodeMaps = QSBWorldSync.GetWorldObjects<QSBGhostNodeMap>();

View File

@ -1,11 +1,6 @@
using QSB.EchoesOfTheEye.Ghosts.WorldObjects;
using QSB.Messaging;
using QSB.Utility;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QSB.EchoesOfTheEye.Ghosts.Messages;