From bca0ea8ece56483e2d399ce966451a08a1a831be Mon Sep 17 00:00:00 2001 From: Archangel Date: Sun, 19 Jan 2025 12:45:49 +0100 Subject: [PATCH] Update prestige tab patch --- project/SPT.Custom/Patches/EnablePrestigeTabPatch.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/SPT.Custom/Patches/EnablePrestigeTabPatch.cs b/project/SPT.Custom/Patches/EnablePrestigeTabPatch.cs index c9825fb..1c15f29 100644 --- a/project/SPT.Custom/Patches/EnablePrestigeTabPatch.cs +++ b/project/SPT.Custom/Patches/EnablePrestigeTabPatch.cs @@ -29,10 +29,10 @@ namespace SPT.Custom.Patches codeInstructions[260] = new(OpCodes.Nop); codeInstructions[261] = new(OpCodes.Nop); codeInstructions[262] = new(OpCodes.Nop); - codeInstructions[263] = new(OpCodes.Nop); // Force a true on the stack instead - codeInstructions[264] = new(OpCodes.Ldc_I4_1); + codeInstructions[263] = new(OpCodes.Ldc_I4_1); + codeInstructions[264] = new(OpCodes.Nop); return codeInstructions; }