mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
test
This commit is contained in:
@@ -201,10 +201,10 @@ public:
|
||||
this->ProcessEvent(ClientClearDeathNotificationFn);
|
||||
}
|
||||
|
||||
UAthenaPlayerMatchReport*& GetMatchReport()
|
||||
UAthenaPlayerMatchReport** GetMatchReport()
|
||||
{
|
||||
static auto MatchReportOffset = GetOffset("MatchReport");
|
||||
return Get<UAthenaPlayerMatchReport*>(MatchReportOffset);
|
||||
static auto MatchReportOffset = GetOffset("MatchReport", false);
|
||||
return MatchReportOffset == -1 ? nullptr : GetPtr<UAthenaPlayerMatchReport*>(MatchReportOffset);
|
||||
}
|
||||
|
||||
void ClientSendTeamStatsForPlayer(FAthenaMatchTeamStats* TeamStats)
|
||||
|
||||
Reference in New Issue
Block a user