remove some debug logs

This commit is contained in:
_nebula 2023-03-04 13:32:38 +00:00
parent 310539c5ad
commit e8c8efec6a
2 changed files with 0 additions and 4 deletions

View File

@ -19,8 +19,6 @@ internal class PlanetMessage : QSBMessage<HUDIcon>
return;
}
DebugLog.DebugWrite($"{From} now on {Data}");
from.HUDBox?.UpdateIcon(Data);
}
}

View File

@ -17,7 +17,6 @@ public class PlanetTrigger : SectoredMonoBehaviour
MultiplayerHUDManager.HUDIconStack.Push(Icon);
var top = MultiplayerHUDManager.HUDIconStack.Peek();
DebugLog.DebugWrite($"Pushed {Icon}. Top is now {top}");
new PlanetMessage(top).Send();
}
@ -30,7 +29,6 @@ public class PlanetTrigger : SectoredMonoBehaviour
MultiplayerHUDManager.HUDIconStack.Remove(Icon);
var top = MultiplayerHUDManager.HUDIconStack.Peek();
DebugLog.DebugWrite($"Removed {Icon}. Top is now {top}");
new PlanetMessage(top).Send();
}
}