diff --git a/CHANGELOG.md b/CHANGELOG.md index e047066..df15b6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ - Licentia Genes are back in and should work again. I used the [updated for by Jaaldabaoth](https://gitgud.io/Jaaldabaoth/licentia-labs) for my testing. - Lower-casing most labels to fit rimworld standards, thanks to @Flock-of-birds (#83) - X-Gender-Only Genes leave / re-add artificial genitalia. Thanks to @Jaaldabaoth (#84 / #88) +- Issues with Elasticity References (#87) **Changes**: diff --git a/Common/Assemblies/Rjw-Genes.dll b/Common/Assemblies/Rjw-Genes.dll index 3e1c421..2f5d259 100644 Binary files a/Common/Assemblies/Rjw-Genes.dll and b/Common/Assemblies/Rjw-Genes.dll differ diff --git a/Source/Genes/Damage/Gene_Elasticity.cs b/Source/Genes/Damage/Gene_Elasticity.cs index 5d26c07..3da6ecf 100644 --- a/Source/Genes/Damage/Gene_Elasticity.cs +++ b/Source/Genes/Damage/Gene_Elasticity.cs @@ -1,4 +1,4 @@ -//using LicentiaLabs; +using LicentiaLabs; using Verse; @@ -15,7 +15,7 @@ namespace RJW_Genes { private const int RESET_INTERVAL = 60000; // 60k should be 1 day - /* + public override void PostAdd() { base.PostAdd(); @@ -51,6 +51,6 @@ namespace RJW_Genes candidate.Severity = severity; } } - */ + } } \ No newline at end of file