Skip to content

Commit

Permalink
Update 3.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Awbugl committed Dec 1, 2024
1 parent 1c98782 commit fd53b46
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
- v3.0.12
+ 粗略适配版本V0.10.31.24646
- v3.0.13
+ 修复了研究站工作不正常的问题

+ Adaptation of version v0.10.31.24646
+ Fixed issue that research lab work improperly


<details>
<summary>点击展开日志 | Click to view all </summary>


- v3.0.12
+ 粗略适配版本V0.10.31.24646

+ Adaptation of version v0.10.31.24646


- v3.0.11
+ 修复了v3.0.9的上传速度调整导致的研究站工作不正常的问题

Expand Down
2 changes: 1 addition & 1 deletion src/Patches/UI/ResearchLabPatches.cs
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ public static void LabComponent_UpdateOutputToNext_Patch_Method(LabComponent[] l

if (labComponent.matrixServed[i] >= 3600 && next.matrixServed[i] < 36000)
{
int p = (labComponent.matrixServed[0] - 7200) / 3600 * 3600;
int p = (labComponent.matrixServed[i] - 7200) / 3600 * 3600;
if (p > 36000) p = 36000;
int num = labComponent.split_inc(ref labComponent.matrixServed[i], ref labComponent.matrixIncServed[i], 3600);
next.matrixIncServed[i] += num;
Expand Down
2 changes: 1 addition & 1 deletion src/ProjectGenesis.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class ProjectGenesis : BaseUnityPlugin, IModCanSave, IMultiplayerMod
{
public const string MODGUID = "org.LoShin.GenesisBook";
public const string MODNAME = "GenesisBook";
public const string VERSION = "3.0.12";
public const string VERSION = "3.0.13";
public const string DEBUGVERSION = "";

public static bool LoadCompleted;
Expand Down

0 comments on commit fd53b46

Please sign in to comment.