mirror of
https://github.com/diamante0018/BlackOpsPlugin.git
synced 2025-04-20 02:22:52 +00:00
fix return type
This commit is contained in:
parent
e4c5748fc1
commit
7e22c16446
@ -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
|
||||||
|
@ -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"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user