mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
Fix %MESSAGE
This commit is contained in:
parent
f8d8e8f28d
commit
dd99e49ef7
7 changed files with 11 additions and 13 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 3b4fce89318c9c3cde64677d611092e23da4ae53
|
Subproject commit 980a45b931fdabd11ae5c84b85557e3af4f6a168
|
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.7.4.0")]
|
[assembly: AssemblyVersion("1.7.11.0")]
|
||||||
[assembly: AssemblyFileVersion("1.7.4.0")]
|
[assembly: AssemblyFileVersion("1.7.11.0")]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Package: hisp
|
Package: hisp
|
||||||
Version: 1.7.4
|
Version: 1.7.11
|
||||||
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
|
||||||
Maintainer: Li
|
Maintainer: Li
|
||||||
Homepage: https://islehorse.com
|
Homepage: https://islehorse.com
|
||||||
|
|
|
@ -72,7 +72,7 @@ namespace HISP.Game.Chat
|
||||||
string serverAnnoucement = String.Join(" ", args);
|
string serverAnnoucement = String.Join(" ", args);
|
||||||
|
|
||||||
byte[] chatLeftPacket = PacketBuilder.CreateChat(Messages.FormatServerAnnoucement(serverAnnoucement), PacketBuilder.CHAT_BOTTOM_LEFT);
|
byte[] chatLeftPacket = PacketBuilder.CreateChat(Messages.FormatServerAnnoucement(serverAnnoucement), PacketBuilder.CHAT_BOTTOM_LEFT);
|
||||||
byte[] chatRightPacket = PacketBuilder.CreateChat(Messages.FormatServerAnnoucement(serverAnnoucement), PacketBuilder.CHAT_BOTTOM_LEFT);
|
byte[] chatRightPacket = PacketBuilder.CreateChat(Messages.FormatServerAnnoucement(serverAnnoucement), PacketBuilder.CHAT_BOTTOM_RIGHT);
|
||||||
|
|
||||||
foreach (GameClient client in GameClient.ConnectedClients)
|
foreach (GameClient client in GameClient.ConnectedClients)
|
||||||
{
|
{
|
||||||
|
|
|
@ -30,5 +30,5 @@ using System.Runtime.InteropServices;
|
||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("1.7.4.0")]
|
[assembly: AssemblyVersion("1.7.11.0")]
|
||||||
[assembly: AssemblyFileVersion("1.7.4.0")]
|
[assembly: AssemblyFileVersion("1.7.11.0")]
|
||||||
|
|
|
@ -64,11 +64,9 @@ namespace HISP.Server
|
||||||
|
|
||||||
Logger.ErrorPrint("HISP HAS CRASHED :(");
|
Logger.ErrorPrint("HISP HAS CRASHED :(");
|
||||||
Logger.ErrorPrint("Unhandled Exception: " + execpt.ToString());
|
Logger.ErrorPrint("Unhandled Exception: " + execpt.ToString());
|
||||||
Logger.ErrorPrint(execpt.Message);
|
|
||||||
Logger.ErrorPrint("");
|
|
||||||
Logger.ErrorPrint(execpt.StackTrace);
|
Logger.ErrorPrint(execpt.StackTrace);
|
||||||
|
|
||||||
while (true) { /* Allow asyncronous operations to happen. */ };
|
new EventWaitHandle(false, EventResetMode.ManualReset).WaitOne();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.7.4.0")]
|
[assembly: AssemblyVersion("1.7.11.0")]
|
||||||
[assembly: AssemblyFileVersion("1.7.4.0")]
|
[assembly: AssemblyFileVersion("1.7.11.0")]
|
||||||
|
|
Loading…
Add table
Reference in a new issue