Skip to content

Commit 1b565df

Browse files
Removed unnecessary Harmony reference
1 parent 394066d commit 1b565df

File tree

7 files changed

+6
-19
lines changed

7 files changed

+6
-19
lines changed

About/About.xml

-7
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,9 @@
1111

1212
No Pawn Left Behind enables your enemies to rescue their fallen allies when fleeing a battle.</description>
1313
<modDependencies>
14-
<li>
15-
<packageId>brrainz.harmony</packageId>
16-
<displayName>Harmony</displayName>
17-
<steamWorkshopUrl>steam://url/CommunityFilePage/2009463077</steamWorkshopUrl>
18-
<downloadUrl>https://github.com/pardeike/HarmonyRimWorld/releases/latest</downloadUrl>
19-
</li>
2014
</modDependencies>
2115

2216
<loadAfter>
2317
<li>Ludeon.RimWorld</li>
24-
<li>brrainz.harmony</li>
2518
</loadAfter>
2619
</ModMetaData>

Assemblies/CM_No_Pawn_Left_Behind.dll

0 Bytes
Binary file not shown.

Changelog.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## [1.0.0] - 2021-02-19
2+
3+
### Added
4+
- Initial release

Patches/PatchInRescueBehavior.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Patch>
33

44
<Operation Class="PatchOperationSequence">
5-
<!--<success>Always</success>-->
5+
<success>Always</success>
66
<operations>
77

88
<!-- Raiders kidnapping -->

Source/CM_No_Pawn_Left_Behind/CM_No_Pawn_Left_Behind.csproj

-4
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@
3131
<WarningLevel>4</WarningLevel>
3232
</PropertyGroup>
3333
<ItemGroup>
34-
<Reference Include="0Harmony">
35-
<HintPath>..\..\..\..\..\..\workshop\content\294100\2009463077\Current\Assemblies\0Harmony.dll</HintPath>
36-
<Private>False</Private>
37-
</Reference>
3834
<Reference Include="Assembly-CSharp">
3935
<HintPath>..\..\..\..\RimWorldWin64_Data\Managed\Assembly-CSharp.dll</HintPath>
4036
<Private>False</Private>

Source/CM_No_Pawn_Left_Behind/JobGiver_Rescue.cs

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Text;
43

5-
using HarmonyLib;
64
using RimWorld;
75
using Verse;
86
using Verse.AI;

Source/CM_No_Pawn_Left_Behind/RescueMod.cs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using HarmonyLib;
2-
using UnityEngine;
1+
using UnityEngine;
32
using RimWorld;
43
using Verse;
54

@@ -14,9 +13,6 @@ public class RescueMod : Mod
1413

1514
public RescueMod(ModContentPack content) : base(content)
1615
{
17-
var harmony = new Harmony("CM_No_Pawn_Left_Behind");
18-
harmony.PatchAll();
19-
2016
_instance = this;
2117
settings = GetSettings<RescueModSettings>();
2218
}

0 commit comments

Comments
 (0)