From 70ba0fca067fa97079f74be13e313472050ac619 Mon Sep 17 00:00:00 2001 From: Andy Spencer Date: Thu, 28 Jan 2016 05:51:18 +0000 Subject: [PATCH] Change default score --- spades.awk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spades.awk b/spades.awk index 89c5a7a..46278eb 100644 --- a/spades.awk +++ b/spades.awk @@ -529,7 +529,7 @@ AUTH == OWNER && } /^\.help game$/ { - say(".newgame [score] -- start a game to points, default 500") + say(".newgame [score] -- start a game to points, default 300") say(".endgame -- abort the current game") say(".savegame -- save the current game to disk") say(".loadgame -- load the previously saved game") @@ -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 -- 2.43.2