summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLyssa2025-04-06 15:33:14 +0000
committerLyssa2025-04-06 15:33:14 +0000
commitbe6682e8c3920a41ea67616582744c132def0f97 (patch)
tree4b3fefb86a956ac3d5962b2a8986c1ca39199090
parentf6353e567a585f9f456627b050f5c8b63767bf0e (diff)
downloadTSforge-be6682e8c3920a41ea67616582744c132def0f97.zip
readonly usage inconsistency
-rw-r--r--LibTSforge/Common.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibTSforge/Common.cs b/LibTSforge/Common.cs
index 4d61770..a45870d 100644
--- a/LibTSforge/Common.cs
+++ b/LibTSforge/Common.cs
@@ -81,7 +81,7 @@ namespace LibTSforge
};
// 2^31 - 8 minutes
- public static ulong TimerMax = (ulong)TimeSpan.FromMinutes(2147483640).Ticks;
+ public static readonly ulong TimerMax = (ulong)TimeSpan.FromMinutes(2147483640).Ticks;
public static readonly string ZeroCID = new string('0', 48);
}