From ff4fa6a0d08d6a9c55634c7230d0c7815658ad32 Mon Sep 17 00:00:00 2001
From: dms <dms@c11ca15a-4712-0410-83d8-924469b57eb5>
Date: Fri, 6 Apr 2001 14:05:15 +0000
Subject: [PATCH] When we did a symlink to all the set commands, the string was
 made static (set to "Text") so it was broken. also added link from Desc to
 Text

git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@429 c11ca15a-4712-0410-83d8-924469b57eb5
---
 src/Modules/News.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Modules/News.pl b/src/Modules/News.pl
index 1446db1..b93788d 100644
--- a/src/Modules/News.pl
+++ b/src/Modules/News.pl
@@ -73,7 +73,7 @@ sub Parse {
 	# shortcut/link.
 	# nice hack.
 	my($arg1,$arg2) = split(/\s+/, $3, 2);
-	&set("$arg1 Text $arg2");
+	&set("$arg1 $1 $arg2");
     } elsif ($what =~ /^help(\s+(.*))?$/i) {
 	&::help("news$1");
     } else {
-- 
2.39.5