Skip to content

Commit 1a06762

Browse files
committed
Spelling fixes + Linux Install Script Link update
The ogar-linux-script still pointed towards the original Ogar.
1 parent 082caa4 commit 1a06762

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ogar-linux-script.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ download_and_extract () {
99
if [ ! -d Ogar-master ]; then
1010
if [ ! -f master.tar.gz ]; then
1111
echo "No local master.tar.gz found, downloading with curl."
12-
curl -O -L https://github.com/forairan/Ogar/archive/master.tar.gz
12+
curl -O -L https://github.com/Barbosik/MultiOgar/archive/master.tar.gz
1313
fi
1414
if [ ! -f master.tar.gz ]; then
1515
echo "curl failed to download master.tar.gz, trying wget."
16-
wget https://github.com/forairan/Ogar/archive/master.tar.gz
16+
wget https://github.com/Barbosik/MultiOgar/archive/master.tar.gz
1717
if [ ! -f master.tar.gz ]; then
1818
echo "wget failed as well. Aborting!"
1919
exit 1

src/PacketHandler.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ PacketHandler.prototype.handleMessage = function(message) {
5151
// Send welcome message
5252
this.gameServer.sendChatMessage(null, this.socket.playerTracker, "Welcome to MultiOgar server!");
5353
if (this.gameServer.config.serverChat == 0)
54-
this.gameServer.sendChatMessage(null, this.socket.playerTracker, "This server chat is disabled.");
54+
this.gameServer.sendChatMessage(null, this.socket.playerTracker, "This server's chat is disabled.");
5555
if (this.protocol < 4) {
56-
this.gameServer.sendChatMessage(null, this.socket.playerTracker, "WARNING Your client has protocol error!");
56+
this.gameServer.sendChatMessage(null, this.socket.playerTracker, "WARNING: Your client has protocol error!");
5757
this.gameServer.sendChatMessage(null, this.socket.playerTracker, "Client sends invalid protocol version "+this.protocol);
5858
this.gameServer.sendChatMessage(null, this.socket.playerTracker, "Server assumes it as protocol 4");
5959
}

0 commit comments

Comments
 (0)