From 5ba6c25c6bccf70902da072675f52ef87cfe136a Mon Sep 17 00:00:00 2001 From: quaK Date: Fri, 2 May 2025 21:09:02 +0300 Subject: [PATCH] use getguid instead of getxuid --- src/client/component/logprint.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/client/component/logprint.cpp b/src/client/component/logprint.cpp index 2ac86d66..a53db0dd 100644 --- a/src/client/component/logprint.cpp +++ b/src/client/component/logprint.cpp @@ -75,7 +75,7 @@ namespace logprint int lpselfnum = self_.call("getentitynumber").as(); std::string lpselfname = self_.get("name").as(); std::string lpselfteam = self_.get("team").as(); - std::string lpselfGuid = self_.call("getxuid").as(); + std::string lpselfGuid = self_.call("getguid").as(); int lpattacknum = -1; std::string lpattackname = ""; @@ -90,7 +90,7 @@ namespace logprint lpattacknum = attacker_.call("getentitynumber").as(); lpattackname = attacker_.get("name").as(); lpattackerteam = attacker_.get("team").as(); - lpattackGuid = attacker_.call("getxuid").as(); + lpattackGuid = attacker_.call("getguid").as(); } } @@ -136,7 +136,7 @@ namespace logprint int lpselfnum = self_.call("getentitynumber").as(); std::string lpselfname = self_.get("name").as(); std::string lpselfteam = self_.get("team").as(); - std::string lpselfGuid = self_.call("getxuid").as(); + std::string lpselfGuid = self_.call("getguid").as(); int lpattacknum = -1; std::string lpattackname = ""; @@ -151,7 +151,7 @@ namespace logprint lpattacknum = attacker_.call("getentitynumber").as(); lpattackname = attacker_.get("name").as(); lpattackerteam = attacker_.get("team").as(); - lpattackGuid = attacker_.call("getxuid").as(); + lpattackGuid = attacker_.call("getguid").as(); } }