diff options
| author | Lyssa | 2025-04-06 15:33:14 +0000 |
|---|---|---|
| committer | Lyssa | 2025-04-06 15:33:14 +0000 |
| commit | be6682e8c3920a41ea67616582744c132def0f97 (patch) | |
| tree | 4b3fefb86a956ac3d5962b2a8986c1ca39199090 | |
| parent | f6353e567a585f9f456627b050f5c8b63767bf0e (diff) | |
| download | TSforge-be6682e8c3920a41ea67616582744c132def0f97.zip | |
readonly usage inconsistency
| -rw-r--r-- | LibTSforge/Common.cs | 2 |
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); } |
