From 9615be04b668f0fe86f961a432b120bb7e67878b Mon Sep 17 00:00:00 2001 From: Incredible <46843455+Incr3dible@users.noreply.github.com> Date: Sun, 24 May 2020 23:28:05 +0200 Subject: [PATCH 1/4] urgent fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 96e4258..9878779 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ The server supports battles, for those a patched client is neccessary. #### Requirements: - [.NET Core SDK 3.1](https://dotnet.microsoft.com/download/dotnet-core/3.1) - - MySql Database (on Ubuntu i suggest WAMP with PhpMyAdmin) + - MySql Database (on Debian i suggest LAMP with PhpMyAdmin) for Ubuntu use these commands to set it up: From 92435ee6dc03b1653e35fa79701c781f66d6f0f7 Mon Sep 17 00:00:00 2001 From: Incredible <46843455+Incr3dible@users.noreply.github.com> Date: Tue, 25 Aug 2020 13:10:00 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9878779..41a063f 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) ![Build Status](https://action-badges.now.sh/retroroyale/ClashRoyale) +## make sure to checkout my [latest project](https://github.com/Incr3dible/sc-utility) + #### A .NET Core Clash Royale Server (v1.9) ##### Need help? Join our [Discord](https://discord.gg/XdTw2PZ) From 4f2f87f22e2044d54e1b0b3df9ae265b1ca525ed Mon Sep 17 00:00:00 2001 From: Incredible <46843455+Incr3dible@users.noreply.github.com> Date: Sat, 24 Oct 2020 16:34:25 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41a063f..57e432f 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ## make sure to checkout my [latest project](https://github.com/Incr3dible/sc-utility) #### A .NET Core Clash Royale Server (v1.9) -##### Need help? Join our [Discord](https://discord.gg/XdTw2PZ) +##### Need help? Join our [Discord](https://discord.gg/8cHkNE6) ## Battles The server supports battles, for those a patched client is neccessary. From 851b70c4a67a5b425983e339d87c9171ada676fd Mon Sep 17 00:00:00 2001 From: Xeon <49839864+Xeon8297@users.noreply.github.com> Date: Sat, 7 Aug 2021 15:29:55 +0300 Subject: [PATCH 4/4] Fixed dead code in EndClientTurn --- .../Protocol/Messages/Client/EndClientTurnMessage.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ClashRoyale/Protocol/Messages/Client/EndClientTurnMessage.cs b/src/ClashRoyale/Protocol/Messages/Client/EndClientTurnMessage.cs index f1a52ad..f63a04b 100644 --- a/src/ClashRoyale/Protocol/Messages/Client/EndClientTurnMessage.cs +++ b/src/ClashRoyale/Protocol/Messages/Client/EndClientTurnMessage.cs @@ -48,7 +48,7 @@ public override void Process() Device.AdjustTick(Tick); } - if (Count < 0 && Count > 128) return; + if (Count < 0 || Count > 128) return; for (var i = 0; i < Count; i++) { @@ -89,4 +89,4 @@ public override void Process() } } } -} \ No newline at end of file +}