From fae2710ba7e068edb68baf26f901af564741e5bf Mon Sep 17 00:00:00 2001 From: Adam- Date: Fri, 21 May 2010 23:05:38 +0000 Subject: [PATCH] Fixed saving capsmin in the database, fixes the bug also fixed by the last commit git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2974 5417fbe8-f217-4b02-8779-1006273d7864 --- src/core/db_plain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/db_plain.cpp b/src/core/db_plain.cpp index 51678322d..7e699b0fb 100644 --- a/src/core/db_plain.cpp +++ b/src/core/db_plain.cpp @@ -1168,7 +1168,7 @@ class DBPlain : public Module } db << "MD BI TTB BOLDS " << ci->ttb[0] << " COLORS " << ci->ttb[1] << " REVERSES " << ci->ttb[2] << " UNDERLINES " << ci->ttb[3] << " BADWORDS " << ci->ttb[4] << " CAPS " << ci->ttb[5] << " FLOOD " << ci->ttb[6] << " REPEAT " << ci->ttb[7] << endl; if (ci->capsmin) - db << "MD BI CAPSMINS " << ci->capsmin << endl; + db << "MD BI CAPSMIN " << ci->capsmin << endl; if (ci->capspercent) db << "MD BI CAPSPERCENT " << ci->capspercent << endl; if (ci->floodlines)