From 68273e7ada8fb2556d0f0c30b6f0e4af361c39f3 Mon Sep 17 00:00:00 2001 From: Bryan Aldrich Date: Tue, 24 Aug 2021 21:54:25 -0400 Subject: [PATCH] fix compatibility with save our ships 2 --- Source/Androids For RW1.2/Utils/CPatchs.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Androids For RW1.2/Utils/CPatchs.cs b/Source/Androids For RW1.2/Utils/CPatchs.cs index b2ab5ff..fa14e9c 100644 --- a/Source/Androids For RW1.2/Utils/CPatchs.cs +++ b/Source/Androids For RW1.2/Utils/CPatchs.cs @@ -63,9 +63,9 @@ public static void PrisonLabor_GetChangePointsPostfix(ref bool __result, Pawn __ - public static void SaveOurShip2_hasSpaceSuit(Pawn thePawn, ref bool __result) + public static void SaveOurShip2_hasSpaceSuit(Pawn pawn, ref bool __result) { - if (thePawn.IsAndroidTier()) + if (pawn.IsAndroidTier()) { __result = true; }