diff --git a/About/About.xml b/About/About.xml index effb065..7b5e886 100644 --- a/About/About.xml +++ b/About/About.xml @@ -49,7 +49,7 @@ CoderChang65535: Update chinese translations Téo Bouttier: French translation <size=24>Version</size> -This is version 3.19.301, for RimWorld 1.1.2624. +This is version 3.20.302, for RimWorld 1.1.2624. diff --git a/About/Manifest.xml b/About/Manifest.xml index a93b0f0..21f291b 100644 --- a/About/Manifest.xml +++ b/About/Manifest.xml @@ -1,6 +1,6 @@ - 3.19.296 + 3.20.302 https://raw.githubusercontent.com/fluffy-mods/WorkTab/1.1/About/Manifest.xml - https://github.com/fluffy-mods/WorkTab/releases/v3.19.296 + https://github.com/fluffy-mods/WorkTab/releases/v3.20.302 \ No newline at end of file diff --git a/Assemblies/FluffyUI.dll b/Assemblies/FluffyUI.dll index 77982f6..67cce89 100644 Binary files a/Assemblies/FluffyUI.dll and b/Assemblies/FluffyUI.dll differ diff --git a/Assemblies/WorkTab.dll b/Assemblies/WorkTab.dll index c0c01c9..cf9883e 100644 Binary files a/Assemblies/WorkTab.dll and b/Assemblies/WorkTab.dll differ diff --git a/Readme.md b/Readme.md index 1557603..47d76de 100644 --- a/Readme.md +++ b/Readme.md @@ -70,4 +70,4 @@ Show your appreciation by buying me a coffee (or contribute towards a nice singl [![I Have a Black Dog](https://i.ibb.co/ss59Rwy/New-Project-2.png)](https://www.youtube.com/watch?v=XiCrniLQGYc) # Version -This is version 3.19.301, for RimWorld 1.1.2624. \ No newline at end of file +This is version 3.20.302, for RimWorld 1.1.2624. \ No newline at end of file diff --git a/Source/Extensions/Job_Extensions.cs b/Source/Extensions/Job_Extensions.cs index ae4f665..83e8faa 100644 --- a/Source/Extensions/Job_Extensions.cs +++ b/Source/Extensions/Job_Extensions.cs @@ -32,9 +32,7 @@ private static void Initialize() public static Texture2D StatusIcon( this JobDef job ) { - if (JobIcons.TryGetValue(job, out var icon)) - return icon; - return DefaultJobIcon; + return JobIcons.TryGetValue(job, out var icon) ? icon : DefaultJobIcon; } public static string DefaultIconPath(this JobDef job) diff --git a/Source/Properties/AssemblyInfo.cs b/Source/Properties/AssemblyInfo.cs index 985c323..95b0e56 100644 --- a/Source/Properties/AssemblyInfo.cs +++ b/Source/Properties/AssemblyInfo.cs @@ -33,4 +33,4 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("3.0.0")] -[assembly: AssemblyFileVersion("3.19.301")] +[assembly: AssemblyFileVersion("3.20.302")]