1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-09 00:53:39 +08:00

code cleanup

This commit is contained in:
2023-12-14 21:55:44 +08:00
parent 51f35bb573
commit aae771d730
6 changed files with 10 additions and 7 deletions

View File

@@ -20,7 +20,7 @@ public class Dustbin : BaseUnityPlugin, IModCanSave, IMultiplayerMod
public new static readonly BepInEx.Logging.ManualLogSource Logger = public new static readonly BepInEx.Logging.ManualLogSource Logger =
BepInEx.Logging.Logger.CreateLogSource(PluginInfo.PLUGIN_NAME); BepInEx.Logging.Logger.CreateLogSource(PluginInfo.PLUGIN_NAME);
public static readonly int[] SandsFactors = new int[12001]; private static readonly int[] SandsFactors = new int[12001];
public bool CheckVersion(string hostVersion, string clientVersion) public bool CheckVersion(string hostVersion, string clientVersion)
{ {

View File

@@ -91,7 +91,10 @@ public class LogisticMiner : BaseUnityPlugin
{ {
_miningSpeedScaleByTech = GameMain.history.miningSpeedScale; _miningSpeedScaleByTech = GameMain.history.miningSpeedScale;
_miningSpeedScaleLong = (long)(_miningSpeedScaleByTech * 100); _miningSpeedScaleLong = (long)(_miningSpeedScaleByTech * 100);
_miningFrames = 120f / _miningSpeedScaleByTech; lock (PlanetVeinCacheData)
{
_miningFrames = 120f / _miningSpeedScaleByTech;
}
} }
[HarmonyPostfix] [HarmonyPostfix]

View File

@@ -65,8 +65,8 @@ public class MechaDronesTweaksPlugin : BaseUnityPlugin
public static class MechaDronesTweaks public static class MechaDronesTweaks
{ {
public static bool UseFixedSpeed = false; public static bool UseFixedSpeed;
public static bool SkipStage1 = false; public static bool SkipStage1;
public static bool RemoveSpeedLimitForStage1 = true; public static bool RemoveSpeedLimitForStage1 = true;
public static float FixedSpeed = 300f; public static float FixedSpeed = 300f;
public static float SpeedMultiplier = 4f; public static float SpeedMultiplier = 4f;

View File

@@ -13,7 +13,7 @@ public class OrbitalCollectorBatchBuild : BaseUnityPlugin
private bool _cfgEnabled = true; private bool _cfgEnabled = true;
private static int _maxBuildCount; private static int _maxBuildCount;
private static bool _instantBuild = false; private static bool _instantBuild;
private void Awake() private void Awake()
{ {

View File

@@ -58,7 +58,7 @@ public static class BeltFix
[HarmonyPatch(typeof(ConnGizmoRenderer), "Update")] [HarmonyPatch(typeof(ConnGizmoRenderer), "Update")]
public static IEnumerable<CodeInstruction> ConnGizmoRenderer_Update_Transpiler(IEnumerable<CodeInstruction> instructions, ILGenerator generator) public static IEnumerable<CodeInstruction> ConnGizmoRenderer_Update_Transpiler(IEnumerable<CodeInstruction> instructions, ILGenerator generator)
{ {
bool lastIsLdcI4_3 = false; var lastIsLdcI4_3 = false;
foreach (var instr in instructions) foreach (var instr in instructions)
{ {
if (lastIsLdcI4_3) if (lastIsLdcI4_3)

View File

@@ -18,7 +18,7 @@ public class Patch : BaseUnityPlugin, IModCanSave
BepInEx.Logging.Logger.CreateLogSource(PluginInfo.PLUGIN_NAME); BepInEx.Logging.Logger.CreateLogSource(PluginInfo.PLUGIN_NAME);
private const ushort SaveVersion = 1; private const ushort SaveVersion = 1;
private static bool _initialized = false; private static bool _initialized;
public static Cfg Cfg = new(); public static Cfg Cfg = new();
private static Cfg _oldCfg; private static Cfg _oldCfg;