We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9af3012 commit 2b914f6Copy full SHA for 2b914f6
src/Managers/Main.cs
@@ -10,7 +10,7 @@
10
namespace PolyMod.Managers;
11
public static class Main
12
{
13
- internal const int maxTechTier = 100;
+ internal const int MAX_TECH_TIER = 100;
14
internal static readonly Stopwatch stopwatch = new();
15
internal static bool fullyInitialized;
16
internal static bool dependencyCycle;
@@ -150,7 +150,7 @@ internal static void Load(JObject gameLogicdata)
150
}
151
152
TechItem.techTierFirebaseId.Clear();
153
- for (int i = 0; i <= maxTechTier; i++)
+ for (int i = 0; i <= MAX_TECH_TIER; i++)
154
155
TechItem.techTierFirebaseId.Add($"tech_research_{i}");
156
0 commit comments