summaryrefslogtreecommitdiffstats
path: root/mbbsd/bbs.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/bbs.c')
-rw-r--r--mbbsd/bbs.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c
index f5423fd3..1039e1e4 100644
--- a/mbbsd/bbs.c
+++ b/mbbsd/bbs.c
@@ -2142,7 +2142,11 @@ recommend(int ent, fileheader_t * fhdr, const char *direct)
return do_bid(ent, fhdr, bp, direct, ptime);
}
- if (bp->brdattr & BRD_NOFASTRECMD)
+ if((currmode & MODE_BOARD) || HasUserPerm(PERM_SYSOP))
+ {
+ /* I'm BM or SYSOP. */
+ }
+ else if (bp->brdattr & BRD_NOFASTRECMD)
{
int d = (int)bp->fastrecommend_pause - (now - lastrecommend);
if (d > 0)