remove logs

This commit is contained in:
_nebula 2024-01-30 13:04:13 +00:00
parent 25dbf50fdc
commit 7f1dfb52c1

View File

@ -21,7 +21,6 @@ public class QSBDreamLanternController : WorldObject<DreamLanternController>
// Ghosts don't have the item and instead the effects are controlled by GhostEffects
if (!IsGhostLantern)
{
DebugLog.DebugWrite($"Not GhostLantern, getting DreamLanternItem");
DreamLanternItem = AttachedObject.GetComponent<DreamLanternItem>();
if (DreamLanternItem == null) // ghost lanterns don't have DreamLanternItems attached
@ -29,10 +28,8 @@ public class QSBDreamLanternController : WorldObject<DreamLanternController>
return;
}
DebugLog.DebugWrite($"_lanternType is {DreamLanternItem._lanternType}");
if (DreamLanternItem._lanternType == DreamLanternType.Malfunctioning)
{
DebugLog.DebugWrite($"returning...");
return;
}