Skip to content

Commit fd53b46

Browse files
committed
Update 3.0.13
1 parent 1c98782 commit fd53b46

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
1-
- v3.0.12
2-
+ 粗略适配版本V0.10.31.24646
1+
- v3.0.13
2+
+ 修复了研究站工作不正常的问题
33

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

66

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

1010

11+
- v3.0.12
12+
+ 粗略适配版本V0.10.31.24646
13+
14+
+ Adaptation of version v0.10.31.24646
15+
16+
1117
- v3.0.11
1218
+ 修复了v3.0.9的上传速度调整导致的研究站工作不正常的问题
1319

src/Patches/UI/ResearchLabPatches.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ public static void LabComponent_UpdateOutputToNext_Patch_Method(LabComponent[] l
438438

439439
if (labComponent.matrixServed[i] >= 3600 && next.matrixServed[i] < 36000)
440440
{
441-
int p = (labComponent.matrixServed[0] - 7200) / 3600 * 3600;
441+
int p = (labComponent.matrixServed[i] - 7200) / 3600 * 3600;
442442
if (p > 36000) p = 36000;
443443
int num = labComponent.split_inc(ref labComponent.matrixServed[i], ref labComponent.matrixIncServed[i], 3600);
444444
next.matrixIncServed[i] += num;

src/ProjectGenesis.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class ProjectGenesis : BaseUnityPlugin, IModCanSave, IMultiplayerMod
5454
{
5555
public const string MODGUID = "org.LoShin.GenesisBook";
5656
public const string MODNAME = "GenesisBook";
57-
public const string VERSION = "3.0.12";
57+
public const string VERSION = "3.0.13";
5858
public const string DEBUGVERSION = "";
5959

6060
public static bool LoadCompleted;

0 commit comments

Comments
 (0)