diff --git a/QSB/EchoesOfTheEye/AirlockSync/WorldObjects/QSBAirlockInterface.cs b/QSB/EchoesOfTheEye/AirlockSync/WorldObjects/QSBAirlockInterface.cs index ed84ea35..93350633 100644 --- a/QSB/EchoesOfTheEye/AirlockSync/WorldObjects/QSBAirlockInterface.cs +++ b/QSB/EchoesOfTheEye/AirlockSync/WorldObjects/QSBAirlockInterface.cs @@ -1,4 +1,5 @@ using QSB.EchoesOfTheEye.AirlockSync.VariableSync; +using System; using System.Collections.Generic; using UnityEngine; @@ -9,4 +10,14 @@ internal class QSBAirlockInterface : QSBRotatingElements LightSensors => AttachedObject._lightSensors; protected override GameObject NetworkObjectPrefab => QSBNetworkManager.singleton.AirlockPrefab; + + public override string ReturnLabel() + { + var baseString = $"{this}{Environment.NewLine}CurrentRotation:{AttachedObject._currentRotation}"; + foreach (var element in AttachedObject._rotatingElements) + { + baseString += $"{Environment.NewLine}localRotation:{element.localRotation}"; + } + return baseString; + } }