mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-28 00:19:27 +00:00
remove some debug logs
This commit is contained in:
parent
310539c5ad
commit
e8c8efec6a
@ -19,8 +19,6 @@ internal class PlanetMessage : QSBMessage<HUDIcon>
|
||||
return;
|
||||
}
|
||||
|
||||
DebugLog.DebugWrite($"{From} now on {Data}");
|
||||
|
||||
from.HUDBox?.UpdateIcon(Data);
|
||||
}
|
||||
}
|
||||
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user