From d88d7797be68e1de5f347395f48aa51d21fd0658 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 15 Oct 2004 16:39:36 +0000 Subject: [PATCH] Added a fold message and some TODOs. --- plugins/Holdem.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/plugins/Holdem.py b/plugins/Holdem.py index f183a658d..a74415561 100644 --- a/plugins/Holdem.py +++ b/plugins/Holdem.py @@ -47,7 +47,12 @@ __contributors__ = {} # Allow the "sit" command to have specified a stack size, subtracting it from # the bankroll. # Write a command to allow Owner users to give a person money. -# Re-expand the commands using forwarder so they can have better help. +# Re-expand the commands using forwarder so they can have better help. +# Have tables in each channel be entirely configurable. +# Have the bot automatically start the next hand if people are seated. +# Improve the "you've bet X already" to say something cooler when X is 0. +# Have a slight pause before sending the "foo, it's your turn to bet" message, +# and if the user replies before then, don't send it. ### import sets @@ -346,6 +351,7 @@ class Table(object): if bucket: self.foldedBuckets.append(bucket) del self.hands[player] + self.public('%s folds.' % player.name()) self.checkEndOfRound() def check(self, player):