Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Contact #45

Open
wants to merge 5 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
[![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)
##### Need help? Join our [Discord](https://discord.gg/8cHkNE6)

## Battles
The server supports battles, for those a patched client is neccessary.
Expand All @@ -15,7 +17,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:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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++)
{
Expand Down Expand Up @@ -89,4 +89,4 @@ public override void Process()
}
}
}
}
}