File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121#include < sstream>
2222
2323uint32_t Ticket::oneTimeSteamIdSpoof = 0 ;
24- uint32_t Ticket::tempSteamIdSpoof = 0 ;
2524std::map<uint32_t , Ticket::SavedTicket> Ticket::ticketMap = std::map<uint32_t , SavedTicket>();
2625std::map<uint32_t , Ticket::SavedTicket> Ticket::encryptedTicketMap = std::map<uint32_t , SavedTicket>();
2726
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ namespace Ticket
1818 };
1919
2020 extern uint32_t oneTimeSteamIdSpoof;
21- extern uint32_t tempSteamIdSpoof;
2221 extern std::map<uint32_t , SavedTicket> ticketMap;
2322 extern std::map<uint32_t , SavedTicket> encryptedTicketMap;
2423
Original file line number Diff line number Diff line change @@ -743,14 +743,6 @@ static uint32_t hkClientUser_GetSteamId(uint32_t steamId)
743743 if (ticket.steamId )
744744 {
745745 steamId = ticket.steamId ;
746- Ticket::tempSteamIdSpoof = 0 ;
747- }
748- else if (Ticket::tempSteamIdSpoof)
749- {
750- // We need to do it like this, since getAppId returns 0 (Steam Client)
751- // when activating a Ticket for the first time. So we just spoof the whole Steam Client
752- // until that is done, even if it's very hacky
753- steamId = Ticket::tempSteamIdSpoof;
754746 }
755747 else if (Ticket::oneTimeSteamIdSpoof)
756748 {
You can’t perform that action at this time.
0 commit comments