mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 06:19:22 +00:00
Stickers: split network & mod version strings
This commit is contained in:
parent
852520973c
commit
8238ce6ca9
2 changed files with 3 additions and 2 deletions
|
@ -27,6 +27,6 @@ using System.Reflection;
|
|||
namespace NAK.Stickers.Properties;
|
||||
internal static class AssemblyInfoParams
|
||||
{
|
||||
public const string Version = "1.0.2";
|
||||
public const string Version = "1.0.3";
|
||||
public const string Author = "NotAKidoS";
|
||||
}
|
|
@ -8,7 +8,8 @@ public static partial class ModNetwork
|
|||
|
||||
internal const int MaxTextureSize = 1024 * 256; // 256KB
|
||||
|
||||
private const string ModId = $"MelonMod.NAK.Stickers_v{AssemblyInfoParams.Version}";
|
||||
private const string NetworkVersion = "1.0.2"; // change each time network protocol changes
|
||||
private const string ModId = $"MelonMod.NAK.Stickers_v{NetworkVersion}";
|
||||
private const int ChunkSize = 1024; // roughly 1KB per ModNetworkMessage
|
||||
private const int MaxChunkCount = MaxTextureSize / ChunkSize;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue