This commit is contained in:
Diavolo 2022-02-01 13:52:53 +01:00
parent ab26699b66
commit 137a8c3f3a
No known key found for this signature in database
GPG Key ID: FA77F074E98D98A5

View File

@ -132,8 +132,8 @@ namespace Components
// ScriptExtension methods // ScriptExtension methods
Script::AddFunction("GetIp", [](Game::scr_entref_t entref) // gsc: self GetIp() Script::AddFunction("GetIp", [](Game::scr_entref_t entref) // gsc: self GetIp()
{ {
const auto* gentity = Script::GetEntFromEntRef(entref); const auto* gentity = Script::GetEntity(entref);
const auto* client = Script::GetClientFromEnt(gentity); const auto* client = Script::GetClient(gentity);
std::string ip = Game::NET_AdrToString(client->netchan.remoteAddress); std::string ip = Game::NET_AdrToString(client->netchan.remoteAddress);
@ -147,8 +147,8 @@ namespace Components
Script::AddFunction("GetPing", [](Game::scr_entref_t entref) // gsc: self GetPing() Script::AddFunction("GetPing", [](Game::scr_entref_t entref) // gsc: self GetPing()
{ {
const auto* gentity = Script::GetEntFromEntRef(entref); const auto* gentity = Script::GetEntity(entref);
const auto* client = Script::GetClientFromEnt(gentity); const auto* client = Script::GetClient(gentity);
Game::Scr_AddInt(client->ping); Game::Scr_AddInt(client->ping);
}); });