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(); } }