From a3e352acb2ae383b5ef56203484d31597f2858dd Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Wed, 13 Jun 2012 20:17:38 +0200 Subject: [PATCH] /co/ has an image limit of 250. --- 4chan_x.user.js | 3 ++- script.coffee | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 5c4e48d1d..b6f08cc7d 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -3531,8 +3531,9 @@ switch (g.BOARD) { case 'a': case 'b': - case 'mlp': case 'v': + case 'co': + case 'mlp': return 251; case 'vg': return 501; diff --git a/script.coffee b/script.coffee index bc914b779..bc1faec5a 100644 --- a/script.coffee +++ b/script.coffee @@ -2693,7 +2693,7 @@ ThreadStats = @posts = @images = 0 @imgLimit = switch g.BOARD - when 'a', 'b', 'mlp', 'v' + when 'a', 'b', 'v', 'co', 'mlp' 251 when 'vg' 501