From ae4f890574da6c89e6aab44c8418e0a78e45f381 Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Tue, 27 Apr 2021 22:35:15 +0200 Subject: [PATCH] Fixed some bugs --- server/src/VirtualServer.h | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/VirtualServer.h b/server/src/VirtualServer.h index 62f227d..dfd65d5 100644 --- a/server/src/VirtualServer.h +++ b/server/src/VirtualServer.h @@ -124,6 +124,7 @@ namespace ts { } inline ServerSlotUsageReport& operator+=(const ServerSlotUsageReport& other) { + this->server_count += other.server_count; this->max_clients += other.max_clients; this->reserved_clients += other.reserved_clients; this->clients_teamspeak += other.clients_teamspeak;