From 7ee14d61698e23c61a51cc6e15e836246eadb21e Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Wed, 9 Apr 2008 17:06:40 +0200 Subject: [PATCH 1/1] uno plugin: downcase parameters --- data/rbot/plugins/games/uno.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/rbot/plugins/games/uno.rb b/data/rbot/plugins/games/uno.rb index e4ee2ae2..59cf0ba9 100644 --- a/data/rbot/plugins/games/uno.rb +++ b/data/rbot/plugins/games/uno.rb @@ -565,7 +565,7 @@ class UnoPlugin < Plugin end when :pl # play card if g.has_turn?(m.source) - g.play_card(m.source, m.params) + g.play_card(m.source, m.params.downcase) else m.reply _("It's not your turn") end -- 2.39.2