Skip to content

Commit

Permalink
Change default score
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy753421 committed Jan 28, 2016
1 parent 9434e58 commit 70ba0fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spades.awk
Expand Up @@ -529,7 +529,7 @@ AUTH == OWNER &&
}

/^\.help game$/ {
say(".newgame [score] -- start a game to <score> points, default 500")
say(".newgame [score] -- start a game to <score> points, default 300")
say(".endgame -- abort the current game")
say(".savegame -- save the current game to disk")
say(".loadgame -- load the previously saved game")
Expand Down Expand Up @@ -600,7 +600,7 @@ match($0, /^\.newgame ?([1-9][0-9]*) *- *([1-9][0-9]*)$/, _arr) {
} else {
$1 = ".join"
sp_owner = FROM
sp_playto = $2 ? $2 : 200
sp_playto = $2 ? $2 : 300
sp_limit = sp_playto > 200 ? 10 : 5;
sp_state = "join"
sp_channel = DST
Expand Down

0 comments on commit 70ba0fc

Please sign in to comment.