From dbe4efa5777ce48d99018eff680fc279e8ccee06 Mon Sep 17 00:00:00 2001 From: piaip Date: Tue, 23 Jun 2009 14:35:18 +0000 Subject: * move money calibration from bbs.c to edit.c * fix: previous entropy limitation would half max post money git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4695 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- mbbsd/bbs.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'mbbsd/bbs.c') diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c index 04b73def..3b1a4eb9 100644 --- a/mbbsd/bbs.c +++ b/mbbsd/bbs.c @@ -1108,11 +1108,9 @@ do_general(int isbid) // money verification #ifdef MAX_POST_MONEY - if (money > MAX_POST_MONEY * 2) + if (money > MAX_POST_MONEY) money = MAX_POST_MONEY; - else #endif - money /= 2; // drop money & numposts for free boards // including: special boards (e.g. TEST, ALLPOST), bad boards, no BM boards -- cgit v1.2.3