Skip to content
This repository was archived by the owner on Sep 15, 2024. It is now read-only.

Commit 375d587

Browse files
remove debug stuff
1 parent dbd9140 commit 375d587

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

Scripts/Msc/Commands/CommandDebug.cs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,8 @@ public class CommandDebug : Command
1212

1313
public override void Run(string[] args)
1414
{
15-
if (args.Length == 0)
16-
return;
17-
18-
if (!int.TryParse(args[0], out int result))
19-
return;
20-
21-
SceneGame.Test = result;
22-
Utils.Log("updated test to " + result);
15+
// debug command
16+
// do debug stuff here
2317
}
2418
}
2519
}

Scripts/Scenes/Game/SceneGame.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@ public static void UpdatePlayerPositions(Dictionary<uint, Vector2> playerPositio
6161
ServerPlayerPositions = playerPositions;
6262
}
6363

64-
public static int Test = 100;
65-
6664
public override void _Process(float delta)
6765
{
6866
ModLoader.Call("OnGameUpdate", delta);

0 commit comments

Comments
 (0)