Skip to content

Commit

Permalink
v1.4.1
Browse files Browse the repository at this point in the history
- Minor fix
  • Loading branch information
Jaxe-Dev committed Feb 22, 2020
1 parent 1b7bd35 commit ae174a5
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 46 deletions.
2 changes: 1 addition & 1 deletion About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
<li>1.0</li>
<li>1.1</li>
</supportedVersions>
<description>Mod Version: 1.4.0\n\n\nPawn Rules is a mod that allows custom rules to be assigned individually to your colonists, animals, guests and prisoners.\n\nCurrently the following rules can be applied:\n\n- Disallow certain foods\n- Disallow bonding with certain animals\n- Disallow new romances\n- Disallow constructing items that have a quality level\n\nAny of these rules can be disabled and hidden from the rules window. Rules presets and defaults can be imported and exported between games.</description>
<description>Mod Version: 1.4.1\n\n\nPawn Rules is a mod that allows custom rules to be assigned individually to your colonists, animals, guests and prisoners.\n\nCurrently the following rules can be applied:\n\n- Disallow certain foods\n- Disallow bonding with certain animals\n- Disallow new romances\n- Disallow constructing items that have a quality level\n\nAny of these rules can be disabled and hidden from the rules window. Rules presets and defaults can be imported and exported between games.</description>
</ModMetaData>
7 changes: 0 additions & 7 deletions About/Manifest.xml

This file was deleted.

7 changes: 0 additions & 7 deletions Defs/UpdateFeaturesDef/UpdateFeatures.xml

This file was deleted.

3 changes: 3 additions & 0 deletions LoadFolders.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
<li></li>
<li>v1.1</li>
</default>
<v1.0>
<li></li>
</v1.0>
<v1.1>
<li></li>
<li>v1.1</li>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Pawn Rules
![Mod Version](https://img.shields.io/badge/Mod_Version-1.4.0-blue.svg)
![Mod Version](https://img.shields.io/badge/Mod_Version-1.4.1-blue.svg)
![RimWorld Version](https://img.shields.io/badge/Built_for_RimWorld-1.1-blue.svg)
![Harmony Version](https://img.shields.io/badge/Powered_by_Harmony-2.0-blue.svg)\
![Steam Subscribers](https://img.shields.io/badge/dynamic/xml.svg?label=Steam+Subscribers&query=//table/tr[2]/td[1]&colorB=blue&url=https://steamcommunity.com/sharedfiles/filedetails/%3Fid=1499843448&suffix=+total)
Expand Down
19 changes: 0 additions & 19 deletions Source/Integration/HugsLib.cs

This file was deleted.

5 changes: 1 addition & 4 deletions Source/Mod.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.IO;
using PawnRules.Data;
using PawnRules.Integration;
using PawnRules.Interface;
using PawnRules.Patch;
using RimWorld;
Expand All @@ -13,7 +12,7 @@ internal class Mod : Verse.Mod
{
public const string Id = "PawnRules";
public const string Name = "Pawn Rules";
public const string Version = "1.4.0";
public const string Version = "1.4.1";

public static readonly DirectoryInfo ConfigDirectory = new DirectoryInfo(Path.Combine(GenFilePaths.ConfigFolderPath, Id));

Expand All @@ -27,8 +26,6 @@ public Mod(ModContentPack contentPack) : base(contentPack)
FirstTimeUser = !ConfigDirectory.Exists;
ConfigDirectory.Create();

if (!FirstTimeUser) { HugsLib.RegisterUpdateFeature(); }

Log("Initialized");
}

Expand Down
7 changes: 0 additions & 7 deletions Source/PawnRules.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
<Compile Include="Data\RestrictionType.cs" />
<Compile Include="Data\Rules.cs" />
<Compile Include="Data\ScribePlus.cs" />
<Compile Include="Integration\HugsLib.cs" />
<Compile Include="Integration\RimHUD.cs" />
<Compile Include="Interface\Dialog_Alert.cs" />
<Compile Include="Interface\Dialog_Global.cs" />
Expand Down Expand Up @@ -122,12 +121,6 @@
<Content Include="..\About\About.xml">
<Link>-\About\About.xml</Link>
</Content>
<Content Include="..\About\Manifest.xml">
<Link>-\About\Manifest.xml</Link>
</Content>
<Content Include="..\Defs\UpdateFeaturesDef\UpdateFeatures.xml">
<Link>-\Defs\UpdateFeaturesDefs\UpdateFeatures.xml</Link>
</Content>
<Content Include="..\Defs\WorldObjectDefs\PawnRules.xml">
<Link>-\Defs\WorldObjectDefs\PawnRules.xml</Link>
</Content>
Expand Down

0 comments on commit ae174a5

Please sign in to comment.