diff --git a/MTSC/MTSC.csproj b/MTSC/MTSC.csproj
index a7ad732..0defa7a 100644
--- a/MTSC/MTSC.csproj
+++ b/MTSC/MTSC.csproj
@@ -5,12 +5,12 @@
netcoreapp2.1;net48;netstandard2.0;netcoreapp3.0
- 1.1.0
+ 1.1.1
Alexandru-Victor Macocian
MTSC
Modular TCP Server and Client
- 0.1.1.0
- 0.1.1.0
+ 0.1.1.1
+ 0.1.1.1
true
AnyCPU;x64
https://github.com/AlexMacocian/MTSC
diff --git a/MTSC/Server/UsageMonitors/CPUUsageLimiter.cs b/MTSC/Server/UsageMonitors/CPUUsageLimiter.cs
index 631378d..01d1a22 100644
--- a/MTSC/Server/UsageMonitors/CPUUsageLimiter.cs
+++ b/MTSC/Server/UsageMonitors/CPUUsageLimiter.cs
@@ -42,6 +42,7 @@ namespace MTSC.Server.UsageMonitors
while(cpuUsage > cpuUsageLimit)
{
Thread.Sleep(10);
+ PollCPUUsage();
}
}