@@ -116,7 +116,7 @@ SH_DECL_MANUALHOOK2_void(CreateWorkshopMapGroup, 0, 0, 0, const char*, const CUt
116
116
SH_DECL_MANUALHOOK1 (OnTakeDamage_Alive, 0 , 0 , 0 , bool , CTakeDamageInfoContainer *);
117
117
SH_DECL_MANUALHOOK1_void (CheckMovingGround, 0 , 0 , 0 , double );
118
118
SH_DECL_HOOK2 (IGameEventManager2, LoadEventsFromFile, SH_NOATTRIB, 0 , int , const char *, bool );
119
- SH_DECL_MANUALHOOK2 (GoToIntermission, 0 , 0 , 0 , int64_t *, int64_t , char );
119
+ SH_DECL_MANUALHOOK1_void (GoToIntermission, 0 , 0 , 0 , bool );
120
120
121
121
CS2Fixes g_CS2Fixes;
122
122
@@ -191,9 +191,6 @@ bool CS2Fixes::Load(PluginId id, ISmmAPI *ismm, char *error, size_t maxlen, bool
191
191
int offset = g_GameConfig->GetOffset (" IGameTypes_CreateWorkshopMapGroup" );
192
192
SH_MANUALHOOK_RECONFIGURE (CreateWorkshopMapGroup, offset, 0 , 0 );
193
193
194
- offset = g_GameConfig->GetOffset (" CCSGameRules_GoToIntermission" );
195
- SH_MANUALHOOK_RECONFIGURE (GoToIntermission, offset, 0 , 0 );
196
-
197
194
SH_ADD_HOOK (IServerGameDLL, GameFrame, g_pSource2Server, SH_MEMBER (this , &CS2Fixes::Hook_GameFramePost), true );
198
195
SH_ADD_HOOK (IServerGameDLL, GameServerSteamAPIActivated, g_pSource2Server, SH_MEMBER (this , &CS2Fixes::Hook_GameServerSteamAPIActivated), false );
199
196
SH_ADD_HOOK (IServerGameDLL, GameServerSteamAPIDeactivated, g_pSource2Server, SH_MEMBER (this , &CS2Fixes::Hook_GameServerSteamAPIDeactivated), false );
@@ -279,6 +276,17 @@ bool CS2Fixes::Load(PluginId id, ISmmAPI *ismm, char *error, size_t maxlen, bool
279
276
return false ;
280
277
}
281
278
279
+ auto pCCSGameRulesVTable = modules::server->FindVirtualTable (" CCSGameRules" );
280
+
281
+ offset = g_GameConfig->GetOffset (" CCSGameRules_GoToIntermission" );
282
+ if (offset == -1 )
283
+ {
284
+ snprintf (error, maxlen, " Failed to find CCSGameRules::GoToIntermission\n " );
285
+ bRequiredInitLoaded = false ;
286
+ }
287
+ SH_MANUALHOOK_RECONFIGURE (GoToIntermission, offset, 0 , 0 );
288
+ g_iGoToIntermissionId = SH_ADD_MANUALDVPHOOK (GoToIntermission, pCCSGameRulesVTable, SH_MEMBER (this , &CS2Fixes::Hook_GoToIntermission), false );
289
+
282
290
Message ( " All hooks started!\n " );
283
291
284
292
UnlockConVars ();
@@ -876,22 +884,12 @@ void CS2Fixes::Hook_CreateWorkshopMapGroup(const char* name, const CUtlStringLis
876
884
RETURN_META (MRES_IGNORED);
877
885
}
878
886
879
- void CS2Fixes::CreateGoToIntermissionHook ()
880
- {
881
- g_iGoToIntermissionId = SH_ADD_MANUALVPHOOK (GoToIntermission, g_pGameRules, SH_MEMBER (this , &CS2Fixes::Hook_GoToIntermission), false );
882
- }
883
-
884
- void CS2Fixes::RemoveGoToIntermissionHook ()
885
- {
886
- SH_REMOVE_HOOK_ID (g_iGoToIntermissionId);
887
- }
888
-
889
- int64_t * CS2Fixes::Hook_GoToIntermission (int64_t unk1, char unk2)
887
+ void CS2Fixes::Hook_GoToIntermission (bool bAbortedMatch)
890
888
{
891
889
if (!g_pMapVoteSystem->IsIntermissionAllowed ())
892
- RETURN_META_VALUE (MRES_SUPERCEDE, nullptr );
890
+ RETURN_META (MRES_SUPERCEDE);
893
891
894
- RETURN_META_NOREF (MRES_IGNORED, int64_t * );
892
+ RETURN_META (MRES_IGNORED);
895
893
}
896
894
897
895
bool g_bDropMapWeapons = false ;
0 commit comments