File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ download_and_extract () {
9
9
if [ ! -d Ogar-master ]; then
10
10
if [ ! -f master.tar.gz ]; then
11
11
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
13
13
fi
14
14
if [ ! -f master.tar.gz ]; then
15
15
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
17
17
if [ ! -f master.tar.gz ]; then
18
18
echo " wget failed as well. Aborting!"
19
19
exit 1
Original file line number Diff line number Diff line change @@ -51,9 +51,9 @@ PacketHandler.prototype.handleMessage = function(message) {
51
51
// Send welcome message
52
52
this . gameServer . sendChatMessage ( null , this . socket . playerTracker , "Welcome to MultiOgar server!" ) ;
53
53
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." ) ;
55
55
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!" ) ;
57
57
this . gameServer . sendChatMessage ( null , this . socket . playerTracker , "Client sends invalid protocol version " + this . protocol ) ;
58
58
this . gameServer . sendChatMessage ( null , this . socket . playerTracker , "Server assumes it as protocol 4" ) ;
59
59
}
You can’t perform that action at this time.
0 commit comments