r3682 - trunk/Docs/server/rcon2irc

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Mon Jun 2 14:53:23 EDT 2008


Author: div0
Date: 2008-06-02 14:53:22 -0400 (Mon, 02 Jun 2008)
New Revision: 3682

Modified:
   trunk/Docs/server/rcon2irc/rcon2irc.pl
Log:
and then there was: the missing comma


Modified: trunk/Docs/server/rcon2irc/rcon2irc.pl
===================================================================
--- trunk/Docs/server/rcon2irc/rcon2irc.pl	2008-06-02 18:52:35 UTC (rev 3681)
+++ trunk/Docs/server/rcon2irc/rcon2irc.pl	2008-06-02 18:53:22 UTC (rev 3682)
@@ -1034,7 +1034,7 @@
 	# chat: Nexuiz server -> IRC channel, result
 	[ dp => q{:vote:v(yes|no|timeout):(\d+):(\d+):(\d+):(\d+):(-?\d+)} => sub {
 		my ($result, $yes, $no, $abstain, $not, $min) = @_;
-		my $spam = "$yes:$no" . (($min >= 0) ? " ($min needed)" : "") . " $abstain didn't care, $not didn't vote";
+		my $spam = "$yes:$no" . (($min >= 0) ? " ($min needed)" : "") . ", $abstain didn't care, $not didn't vote";
 		out irc => 0, "PRIVMSG $config{irc_channel} :* the vote ended with $result: $spam";
 		return 0;
 	} ],




More information about the nexuiz-commits mailing list