Skip to content

Commit

Permalink
v1.0.6
Browse files Browse the repository at this point in the history
- Fix crash with 09/08/2024 update
  • Loading branch information
Cruze03 committed Aug 9, 2024
1 parent 98b1d0d commit a9f2544
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions fakeranks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ void FakeRank_RevealAll::Hook_GameFrame(bool simulating, bool bFirstTick, bool b
INetworkMessageInternal *netmsg = g_pNetworkMessages->FindNetworkMessagePartial("CCSUsrMsg_ServerRankRevealAll");
CNetMessage *msg = netmsg->AllocateMessage();
g_pGameEventSystem->PostEventAbstract(0, false, &filter, netmsg, msg, 0);
netmsg->DeallocateMessage(msg);
// netmsg->DeallocateMessage(msg);
delete msg;
}
}

Expand Down Expand Up @@ -168,7 +169,7 @@ const char *FakeRank_RevealAll::GetLicense()

const char *FakeRank_RevealAll::GetVersion()
{
return "1.0.5";
return "1.0.6";
}

const char *FakeRank_RevealAll::GetDate()
Expand Down

0 comments on commit a9f2544

Please sign in to comment.