diff options
Diffstat (limited to 'mbbsd/board.c')
-rw-r--r-- | mbbsd/board.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index 0c813609..34cbef5d 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -300,8 +300,9 @@ load_boards(char *key) } addnewbrdstat(n, state); } - if(childcount != brdnum) //fix soon - getbcache(class_bid)->childcount = brdnum; + if(childcount < brdnum) //Ptt: dirty fix fix soon + getbcache(class_bid)->childcount = 0; + } } |