Commit 21176934 authored by nanahira's avatar nanahira

Merge branch 'mc'

parents 1e88b2c6 226a6fb7
Pipeline #2826 passed with stages
in 7 minutes and 13 seconds
...@@ -1690,7 +1690,7 @@ class Room ...@@ -1690,7 +1690,7 @@ class Room
else else
for player in @players when player.pos != 7 for player in @players when player.pos != 7
@scores[player.name_vpass] = -5 @scores[player.name_vpass] = -5
if @players.length == 2 and !client.arena_quit_free if @players.length == 2 and @arena == 'athletic' and !client.arena_quit_free
@scores[client.name_vpass] = -9 @scores[client.name_vpass] = -9
@arena_score_handled = true @arena_score_handled = true
index = _.indexOf(@players, client) index = _.indexOf(@players, client)
......
...@@ -2262,7 +2262,7 @@ ...@@ -2262,7 +2262,7 @@
this.scores[player.name_vpass] = -5; this.scores[player.name_vpass] = -5;
} }
} }
if (this.players.length === 2 && !client.arena_quit_free) { if (this.players.length === 2 && this.arena === 'athletic' && !client.arena_quit_free) {
this.scores[client.name_vpass] = -9; this.scores[client.name_vpass] = -9;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment