Skip to content

Commit

Permalink
update for 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DoctorVanGogh committed Oct 19, 2018
1 parent a39e34b commit 1f15e45
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>Omni Core Drill</name>
<author>DoctorVanGogh, TheUbie &amp; pointcache</author>
<url>https://github.com/DoctorVanGogh/MiningShaft</url>
<targetVersion>0.19.2009</targetVersion>
<targetVersion>1.0.0</targetVersion>
<description><![CDATA[ A deep core driller capable of pulling out any material you want, given enough power and work by your pawns.
Supports any and all mod-added mineable materials out of the box.
Expand Down
Binary file modified Assemblies/OmniCoreDrill.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Omni Core Drill

[![RimWorld B19](https://img.shields.io/badge/RimWorld-B19-green.svg?style=popout-square)](http://rimworldgame.com/)
[![RimWorld 1.0](https://img.shields.io/badge/RimWorld-1.0-green.svg?style=popout-square)](http://rimworldgame.com/)
[![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg?style=popout-square)](https://creativecommons.org/licenses/by-nc-sa/4.0/) ![Github Total Downloads](https://img.shields.io/github/downloads-pre/doctorvangogh/MiningShaft/total.svg?style=popout-square) [![GitHub Latest Release Version](https://img.shields.io/github/release/doctorvangogh/MiningShaft.svg?style=popout-square)](../../releases/latest) [![GitHub Latest Pre-Release Version](https://img.shields.io/github/release/doctorvangogh/MiningShaft/all.svg?style=popout-square)](../../releases)


Expand Down
2 changes: 1 addition & 1 deletion Source/OmniCoreDrill/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
[assembly: System.Reflection.AssemblyCopyright("Copyright © DoctorVanGogh 2017")]
[assembly: System.Runtime.InteropServices.ComVisible(false)]
[assembly: System.Runtime.InteropServices.Guid("7b307eac-98fb-44c4-a5e1-c4a849842bf9")]
[assembly: System.Reflection.AssemblyVersion("2.3.0.33")]
[assembly: System.Reflection.AssemblyVersion("2.3.0.36")]


2 changes: 1 addition & 1 deletion Source/OmniCoreDrill/Properties/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.0.33
2.3.0.36
2 changes: 1 addition & 1 deletion Source/OmniCoreDrill/ThingDefGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ private static void UpdateGeneratedDef(ThingDef material, RecipeDef recipe, Dril
int iYield = (int) Math.Round(yield);

recipe.workAmount = work;
recipe.description = LanguageKeys.keyed.ocd_description.Translate(sourceLabel, iYield, material.LabelCap);
recipe.description = LanguageKeys.keyed.ocd_description.Translate(new object[] { sourceLabel, iYield, material.LabelCap});
recipe.products.First().count = iYield;
}

Expand Down

0 comments on commit 1f15e45

Please sign in to comment.