diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-04-09 22:02:00 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-04-09 22:22:06 +0200 |
commit | 30ddc82becc5fde75f95b1f395bd66d1de4c09a3 (patch) | |
tree | 958bc9c0c168898646501a9336470eafffdbefa6 /data/rbot/plugins/games | |
parent | a0be4e1a5d71b55dadf5cf3fa976c784a0581d52 (diff) |
uno plugin: fix playing cards after a Reverse after a +something
Diffstat (limited to 'data/rbot/plugins/games')
-rw-r--r-- | data/rbot/plugins/games/uno.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/rbot/plugins/games/uno.rb b/data/rbot/plugins/games/uno.rb index 8db3c7fe..56a7b99c 100644 --- a/data/rbot/plugins/games/uno.rb +++ b/data/rbot/plugins/games/uno.rb @@ -263,6 +263,7 @@ class UnoGame end if card.picker > 0 @picker += card.picker + @last_picker = @discard.picker end if card.special? @special = true @@ -283,7 +284,7 @@ class UnoGame # the correct color # TODO make optional if @picker > 0 - if (card.value == 'Reverse' and card.color == @color) or card.picker >= @discard.picker + if (card.value == 'Reverse' and card.color == @color) or card.picker >= @last_picker return true else return false |