Skip to content

Commit

Permalink
Fixes for potential XML errors from inheritence from other mods.(via …
Browse files Browse the repository at this point in the history
…RimWorld Mod Release Tool)
  • Loading branch information
jecrell committed Oct 29, 2018
1 parent da6ec2b commit 1a7803c
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
6 changes: 5 additions & 1 deletion About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>RimWriter - Books, Scrolls, Tablets, and Libraries</name>
<author>Jecrell</author>
<targetVersion>1.0.2059</targetVersion>
<description>1.20.0.0 (10-26-2018)
<description>1.20.0.1 (10-30-2018)

Add tablets, books, scrolls and more to your RimWorld playthroughs.

Expand Down Expand Up @@ -40,6 +40,10 @@ Maaxar, Shibby Says, TheJagermeister, Cory Bonifay, Kiya Nicoll, Matt Harris, Pa
========================
Changelog
========================
1.20.0.1 (10-30-2018)
========================
Fixes for potential XML errors from inheritence from other mods.

1.20.0.0 (10-26-2018)
========================
Available now for RimWorld 1.0.
Expand Down
4 changes: 4 additions & 0 deletions About/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.20.0.1 (10-30-2018)
========================
Fixes for potential XML errors from inheritence from other mods.

1.20.0.0 (10-26-2018)
========================
Available now for RimWorld 1.0.
Expand Down
2 changes: 1 addition & 1 deletion About/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.20.0.0
1.20.0.1
6 changes: 5 additions & 1 deletion Defs/ThingDefs_Buildings/RimWriter_PaperTables.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<?xml version="1.0" encoding="utf-8" ?>
<Defs>

<ThingDef Name="RimWriter_PaperTable" ParentName="BenchBase">
<ThingDef Name="PapermakingBenchBase" ParentName="BenchBase" Abstract="True">
<thingCategories Inherit="False"><li>BuildingsProduction</li></thingCategories>
</ThingDef>

<ThingDef Name="RimWriter_PaperTable" ParentName="PapermakingBenchBase">
<defName>RimWriter_PapermakingBench</defName>
<label>papermaking table</label>
<thingClass>Building_WorkTable</thingClass>
Expand Down
8 changes: 6 additions & 2 deletions Defs/ThingDefs_Buildings/RimWriter_WritingTables.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<?xml version="1.0" encoding="utf-8" ?>
<Defs>

<ThingDef Name="WritingBenchBase" ParentName="BenchBase" Abstract="True">
<thingCategories Inherit="False"><li>BuildingsProduction</li></thingCategories>
</ThingDef>

<ThingDef ParentName="BenchBase">
<ThingDef ParentName="WritingBenchBase">
<defName>RimWriter_TableTypewriter</defName>
<label>typewriting table</label>
<thingClass>RimWriter.Building_Typewriter</thingClass>
Expand Down Expand Up @@ -70,7 +74,7 @@
</ThingDef>


<ThingDef ParentName="BenchBase">
<ThingDef ParentName="WritingBenchBase">
<defName>RimWriter_TableWriting</defName>
<label>writer's table</label>
<thingClass>RimWriter.Building_Typewriter</thingClass>
Expand Down

0 comments on commit 1a7803c

Please sign in to comment.