From 6732fd8bfdfa0a259fd268089704ed1a2ece8e63 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 26 Sep 2007 02:47:19 +0000 Subject: [PATCH] added basecomm, rockthevote, and randomcycle to the package. the latter two are disabled. --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401487 --- tools/builder/PkgCore.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/builder/PkgCore.cs b/tools/builder/PkgCore.cs index 3639dc7b..9e59b490 100644 --- a/tools/builder/PkgCore.cs +++ b/tools/builder/PkgCore.cs @@ -160,7 +160,7 @@ namespace builder */ public override Plugin [] GetPlugins() { - Plugin [] plugins = new Plugin[16]; + Plugin [] plugins = new Plugin[19]; plugins[0] = new Plugin("admin-flatfile", "admin-flatfile"); plugins[1] = new Plugin("adminhelp"); @@ -178,6 +178,9 @@ namespace builder plugins[13] = new Plugin("sql-admin-manager", true); plugins[14] = new Plugin("basebans"); plugins[15] = new Plugin("mapchooser", true); + plugins[16] = new Plugin("basecomm"); + plugins[17] = new Plugin("randomcycle", true); + plugins[18] = new Plugin("rockthevote", true); return plugins; }