From ae62b9f434b7ed6bb6367725868bcebafb0cfceb Mon Sep 17 00:00:00 2001 From: Silent Date: Fri, 26 Jan 2018 18:18:52 +0100 Subject: [PATCH] Fixed triangle above recruitable peds' heads (SA 1.0) --- SilentPatchSA/SilentPatchSA.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SilentPatchSA/SilentPatchSA.cpp b/SilentPatchSA/SilentPatchSA.cpp index 2d723c9..2ca5d80 100644 --- a/SilentPatchSA/SilentPatchSA.cpp +++ b/SilentPatchSA/SilentPatchSA.cpp @@ -3442,6 +3442,10 @@ void Patch_SA_10() // Fixed CPlayerInfo assignment operator InjectHook( 0x45DEF0, &CPlayerInfo::operator=, PATCH_JUMP ); + + + // Fixed triangle above recruitable peds' heads + Patch( 0x60BC52 + 2, 8 ); // GANG2 } void Patch_SA_11()