Fix 2player for real

This commit is contained in:
Li 2025-01-06 15:43:36 +13:00
parent de6a626f10
commit c40c965d7e
5 changed files with 9 additions and 9 deletions

View file

@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.8.68.0")]
[assembly: AssemblyFileVersion("1.8.68.0")]
[assembly: AssemblyVersion("1.8.73.0")]
[assembly: AssemblyFileVersion("1.8.73.0")]

View file

@ -1,5 +1,5 @@
Package: hisp
Version: 1.8.68
Version: 1.8.73
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
Maintainer: Li
Homepage: https://islehorse.com

View file

@ -30,8 +30,8 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.8.68.0")]
[assembly: AssemblyFileVersion("1.8.68.0")]
[assembly: AssemblyVersion("1.8.73.0")]
[assembly: AssemblyFileVersion("1.8.73.0")]

View file

@ -309,9 +309,9 @@ namespace HISP.Server
// this is used for *most* SwfModule
public static byte[] CreateForwardedSwfModule(byte[] request)
{
byte[] packet = new byte[1 + (request.Length-1)];
byte[] packet = new byte[1 + (request.Length-3)];
packet[0] = PACKET_SWFMODULE;
Array.Copy(request, 0, packet, 1, (request.Length-2));
Array.Copy(request, 2, packet, 1, (request.Length-3));
return packet;
}
// Creates a byte array that contains "Bird Map" data

View file

@ -30,8 +30,8 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.8.68.0")]
[assembly: AssemblyFileVersion("1.8.68.0")]
[assembly: AssemblyVersion("1.8.73.0")]
[assembly: AssemblyFileVersion("1.8.73.0")]