chore: removed unnecessary logs
This commit is contained in:
@@ -67,7 +67,6 @@ public class Paddle(Keys Up, Keys Down, float High, float Low, float Speed) : Be
|
||||
|
||||
isUpPressed = packet.IsUpPressed;
|
||||
isDownPressed = packet.IsDownPressed;
|
||||
ILogger.Shared.Log(this, $"Packet Server {isUpPressed} | {isDownPressed}");
|
||||
|
||||
physicsEngine2D.StepIndividual(rigidBody, sender.Ping.Min(.05f));
|
||||
networkServer?.SendToAll(new PaddleKeyStatePacket(this));
|
||||
@@ -83,7 +82,6 @@ public class Paddle(Keys Up, Keys Down, float High, float Low, float Speed) : Be
|
||||
|
||||
isUpPressed = packet.IsUpPressed;
|
||||
isDownPressed = packet.IsDownPressed;
|
||||
ILogger.Shared.Log(this, $"Packet Client {isUpPressed} | {isDownPressed}");
|
||||
|
||||
physicsEngine2D.StepIndividual(rigidBody, sender.Ping);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user