about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--lib/Caelum/CLI.rakumod2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Caelum/CLI.rakumod b/lib/Caelum/CLI.rakumod
index ab2b6e9..1ef4039 100644
--- a/lib/Caelum/CLI.rakumod
+++ b/lib/Caelum/CLI.rakumod
@@ -81,7 +81,7 @@ multi sub MAIN(
             }
         }
 
-        with @players.sort(*.wallet).reverse[0] -> $player {
+        with @players.sort(*.points).reverse[0] -> $player {
             say "{$player.name} wins $pot!";
             $player.wallet += $pot;
         }