From fa8d5828ecaf15d161ac0d54512e693ba2046dfe Mon Sep 17 00:00:00 2001
From: Pavel am1goo Shestakov <0xShestakov@gmail.com>
Date: Fri, 4 Sep 2026 16:56:55 +0300
Subject: [PATCH] WriteInt64Unpacked using compatible WriteUInt64Unpacked
method now
---
Assets/FishNet/Runtime/Serializing/Writer.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Assets/FishNet/Runtime/Serializing/Writer.cs b/Assets/FishNet/Runtime/Serializing/Writer.cs
index 19f5d7ab..e7b724f1 100644
--- a/Assets/FishNet/Runtime/Serializing/Writer.cs
+++ b/Assets/FishNet/Runtime/Serializing/Writer.cs
@@ -456,7 +456,7 @@ public void WriteUInt64Unpacked(ulong value)
/// Writes a int64.
///
///
- public void WriteInt64Unpacked(long value) => WriteUInt64((ulong)value);
+ public void WriteInt64Unpacked(long value) => WriteUInt64Unpacked((ulong)value);
///
/// Writes an int64.