Forgot to remove the testing command.

This commit is contained in:
That_One_Nerd 2023-03-29 09:08:32 -04:00 committed by GitHub
parent 8170a86247
commit 0ebecf4234
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -342,21 +342,6 @@ public static class BaseModule
});
}
[Command("testing")]
public static void Testing()
{
LoadingBarStart();
int count = 0;
for (float f = 0; f <= 1; f += 0.01f)
{
LoadingBarSet(f);
count++;
if (count % 10 == 0) Write("wowie!");
Thread.Sleep(15);
}
LoadingBarEnd();
}
[Command("exit")]
[Command("quit")]
public static void QuitShell(int code = 0)