From dd8eacbbc87ff296669cfb98aa30edd271122aea Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Thu, 21 May 2020 23:47:59 -0400 Subject: [PATCH] Euchre::Dealer: Fix bad name on chat message This was a bad string-interpolation from the transition to the OOP framework. Did a git-grep to make sure there's no remaining of these. --- lib/Euchre/Dealer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Euchre/Dealer.pm b/lib/Euchre/Dealer.pm index c5195f5..e89d0ac 100644 --- a/lib/Euchre/Dealer.pm +++ b/lib/Euchre/Dealer.pm @@ -237,7 +237,7 @@ sub chat { my $json = { msg_type => 'chat', - msg => "$p->name: $msg->{msg}" + msg => $p->name . ": $msg->{msg}" }; $self->broadcast($json); } -- libgit2 1.1.1