From 40e8270fcd07bddaf00d5e0c09b1b942b4ab4470 Mon Sep 17 00:00:00 2001 From: Andy Spencer Date: Sat, 20 Jul 2013 18:58:42 +0000 Subject: [PATCH] Fall though to .join after .newgame --- spades.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spades.awk b/spades.awk index 3433716..5cf5c05 100644 --- a/spades.awk +++ b/spades.awk @@ -410,13 +410,13 @@ sp_state == "play" && if (sp_state != "new") { reply("There is already a game in progress.") } else { + $1 = ".join" sp_owner = FROM sp_playto = $2 ? $2 : 200 sp_limit = sp_playto > 200 ? 10 : 5; sp_state = "join" sp_channel = DST say(sp_owner " starts a game of Spades to " sp_playto " with " sp_limit " bags!") - #say("#rhnoise", sp_owner " starts a game of Spades in " DST "!") } } -- 2.43.2