From 0ebecf42342074e6cecffe965c2de2e51b9411d4 Mon Sep 17 00:00:00 2001 From: That_One_Nerd Date: Wed, 29 Mar 2023 09:08:32 -0400 Subject: [PATCH] Forgot to remove the testing command. --- SrcMod/Shell/Modules/BaseModule.cs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/SrcMod/Shell/Modules/BaseModule.cs b/SrcMod/Shell/Modules/BaseModule.cs index 2b6ad17..9e18192 100644 --- a/SrcMod/Shell/Modules/BaseModule.cs +++ b/SrcMod/Shell/Modules/BaseModule.cs @@ -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)