fix return type

This commit is contained in:
6arelyFuture 2023-01-30 19:51:00 +00:00
parent e4c5748fc1
commit 7e22c16446
No known key found for this signature in database
GPG Key ID: 22F9079C86CFAB31
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ bool is_mp() { return current == gamemode::multiplayer; }
bool is_sp() { return current == gamemode::zombies; } bool is_sp() { return current == gamemode::zombies; }
} // namespace environment } // namespace environment
bool SV_IsTestClient(int clientNum) { int SV_IsTestClient(int clientNum) {
return svs_clients[clientNum].bIsTestClient == 1; return svs_clients[clientNum].bIsTestClient == 1;
} }
} // namespace game } // namespace game

View File

@ -34,7 +34,7 @@ private:
T* t5zm_; T* t5zm_;
}; };
extern bool SV_IsTestClient(int clientNum); extern int SV_IsTestClient(int clientNum);
} // namespace game } // namespace game
#include "symbols.hpp" #include "symbols.hpp"