Skip to content

Commit

Permalink
Updated mod for Rimworld v1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Heremeus committed Jul 22, 2021
1 parent 084102e commit f9e1c45
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 12 deletions.
3 changes: 2 additions & 1 deletion About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<li>1.0</li>
<li>1.1</li>
<li>1.2</li>
<li>1.3</li>
</supportedVersions>
<packageId>Heremeus.MedicalDissection</packageId>
<description>Medical Dissection adds a dissection table to the game, allowing your doctors to train on human corpses. You can add the mod to an existing save.
Expand All @@ -19,7 +20,7 @@ Feature overview
- A corpse can only be dissected once (A "Allow dissected" and "Allow not dissected" filter can help you to set up your storages and butcher bills efficiently)
- Custom thoughts and tales

v2.4
v2.5
</description>
<modDependencies>
<li>
Expand Down
2 changes: 1 addition & 1 deletion About/Manifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Manifest>
<identifier>MedicalDissection</identifier>
<version>2.4</version>
<version>2.5</version>
<dependencies>
<li>HugsLib</li>
<li>Harmony</li>
Expand Down
2 changes: 1 addition & 1 deletion About/Version.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<!--overrideVersion>1.0.0</overrideVersion-->
<!-- Optional. Use this to specify the version of HugsLib you are targeting.
See https://github.com/UnlimitedHugs/RimworldHugsLib/releases for the current version of the library.-->
<requiredLibraryVersion>7.1.0</requiredLibraryVersion>
<requiredLibraryVersion>9.0.0</requiredLibraryVersion>
<!-- Optional. This is read by the build.js script for the purpose of release publishing. Not used if you don't use the script. -->
<gitHubRepository>UnlimitedHugs/RimworldHugsLibChecker</gitHubRepository>
</VersionData>
5 changes: 5 additions & 0 deletions LoadFolders.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,9 @@
<li>Common</li>
<li>v1.2</li>
</v1.2>
<v1.3>
<li>/</li>
<li>Common</li>
<li>v1.3</li>
</v1.3>
</loadFolders>
2 changes: 1 addition & 1 deletion Source/HMDissection/Dissection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public override void StaticInitialize()

public override void DefsLoaded()
{
Log.Message("Medical Dissection v2.3 loaded");
Log.Message("Medical Dissection v2.5 loaded");
expHandle = Settings.GetHandle("expPerCorpse", "Dissection_ExpSetting_title".Translate(), "Dissection_ExpSetting_desc".Translate(), 3000, Validators.IntRangeValidator(0, 1000000));
expHandle.SpinnerIncrement = 100;
ignoreDailyLimitHandle = Settings.GetHandle("ignoreDailyLimit", "Dissection_DailyLimitSetting_title".Translate(), "Dissection_DailyLimitSetting_desc".Translate(), false);
Expand Down
12 changes: 6 additions & 6 deletions Source/HMDissection/HMDissection.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\v1.1\Assemblies\</OutputPath>
<OutputPath>..\..\v1.3\Assemblies\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -26,23 +26,23 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\v1.2\Assemblies\</OutputPath>
<OutputPath>..\..\v1.3\Assemblies\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="0Harmony, Version=2.0.2.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\v1.2\Assemblies\0Harmony.dll</HintPath>
<Reference Include="0Harmony, Version=2.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\Lib.Harmony.2.1.0\lib\net472\0Harmony.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Assembly-CSharp">
<HintPath>..\..\..\..\RimWorldWin64_Data\Managed\Assembly-CSharp.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="HugsLib, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\UnlimitedHugs.Rimworld.HugsLib.7.1.0\lib\net472\HugsLib.dll</HintPath>
<HintPath>packages\UnlimitedHugs.Rimworld.HugsLib.9.0.0\lib\net472\HugsLib.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
Expand Down
4 changes: 2 additions & 2 deletions Source/HMDissection/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Lib.Harmony" version="2.0.0.8" targetFramework="net472" />
<package id="UnlimitedHugs.Rimworld.HugsLib" version="7.1.0" targetFramework="net472" />
<package id="Lib.Harmony" version="2.1.0" targetFramework="net472" />
<package id="UnlimitedHugs.Rimworld.HugsLib" version="9.0.0" targetFramework="net472" />
</packages>
Binary file added v1.3/Assemblies/HMDissection.dll
Binary file not shown.

0 comments on commit f9e1c45

Please sign in to comment.