Skip to content

Commit

Permalink
bumped version of used dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehni committed Apr 13, 2024
1 parent 9f86e76 commit 9bf3e3d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
Binary file modified 1.5/Assemblies/IHoldMultipleThings.dll
Binary file not shown.
Binary file modified 1.5/Assemblies/PickUpAndHaul.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<url>https://ludeon.com/forums/index.php?topic=35832</url>
<description>"Greatest hauling mod ever" - Chicken Plucker

v1.1.2
v1.1.2¼

Colonists will gather stuff in their inventory, then haul it all to a stockpile.

Expand Down
8 changes: 4 additions & 4 deletions Source/PickUpAndHaul.sln
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29025.244
# Visual Studio Version 17
VisualStudioVersion = 17.9.34622.214
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PickUpAndHaul", "PickUpAndHaul\PickUpAndHaul.csproj", "{CCF8350B-E3FD-4693-9209-681E9C089097}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PickUpAndHaul", "PickUpAndHaul\PickUpAndHaul.csproj", "{CCF8350B-E3FD-4693-9209-681E9C089097}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IHoldMultipleThings", "IHoldMultipleThings\IHoldMultipleThings.csproj", "{E1536A54-D289-41FA-9D0B-8A2F6812C7FA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IHoldMultipleThings", "IHoldMultipleThings\IHoldMultipleThings.csproj", "{E1536A54-D289-41FA-9D0B-8A2F6812C7FA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PickUpAndHaulv10", "PickUpAndHaulv1.0\PickUpAndHaulv10.csproj", "{2480F13E-E9ED-44EC-A5DE-C821676904E7}"
EndProject
Expand Down
4 changes: 2 additions & 2 deletions Source/PickUpAndHaul/HarmonyPatches.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static HarmonyPatches()
harmony.Patch(AccessTools.Method(typeof(JobGiver_Haul), nameof(JobGiver_Haul.TryGiveJob)),
transpiler: new(typeof(HarmonyPatches), nameof(JobGiver_Haul_TryGiveJob_Transpiler)));

Verse.Log.Message("PickUpAndHaul v1.1.2 welcomes you to RimWorld with pointless logspam.");
Verse.Log.Message("PickUpAndHaul v1.1.2¼ welcomes you to RimWorld with pointless logspam.");
}

private static bool Drop_Prefix(Pawn pawn, Thing thing)
Expand Down Expand Up @@ -174,4 +174,4 @@ private static Color GetColorForHauled(Pawn pawn, Thing thing)
=> pawn.GetComp<CompHauledToInventory>()?.GetHashSet().Contains(thing) ?? false
? Color.Lerp(Color.grey, Color.red, 0.5f)
: Color.white;
}
}
4 changes: 2 additions & 2 deletions Source/PickUpAndHaul/PickUpAndHaul.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<WarningLevel>5</WarningLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Krafs.Rimworld.Ref" Version="1.5.4062" />
<PackageReference Include="Lib.Harmony" Version="2.2.2" ExcludeAssets="runtime" />
<PackageReference Include="Krafs.Rimworld.Ref" Version="1.5.4063" />
<PackageReference Include="Lib.Harmony" Version="2.3.3" ExcludeAssets="runtime" />
<PackageReference Include="Krafs.Publicizer" Version="2.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit 9bf3e3d

Please sign in to comment.