From 3f4c513083bf37062aedc7e9c8b54c5848f44269 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Wed, 20 Jun 2007 11:03:06 +0000 Subject: [PATCH] Added reservedslots plugin to build tool --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40997 --- tools/builder/PkgCore.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tools/builder/PkgCore.cs b/tools/builder/PkgCore.cs index dd146cb2..bfb40869 100644 --- a/tools/builder/PkgCore.cs +++ b/tools/builder/PkgCore.cs @@ -133,11 +133,12 @@ namespace builder */ public override Plugin [] GetPlugins() { - Plugin [] plugins = new Plugin[3]; + Plugin [] plugins = new Plugin[4]; plugins[0] = new Plugin("admin-flatfile", "admin-flatfile"); - plugins[1] = new Plugin("basecommands"); - plugins[2] = new Plugin("antiflood"); + plugins[1] = new Plugin("antiflood"); + plugins[2] = new Plugin("basecommands"); + plugins[3] = new Plugin("reservedslots"); return plugins; }