From fea3709963a64f6ba332485aae58b4800d5990f9 Mon Sep 17 00:00:00 2001 From: Incoming5643 Date: Thu, 9 Nov 2017 20:47:34 -0500 Subject: [PATCH 1/2] Doubles the length of Twitterize's accepted string length (#32552) twitter made a bad decision and I intend to capitalize on it --- code/__HELPERS/text.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__HELPERS/text.dm b/code/__HELPERS/text.dm index 3491e831e6..b36a8c678b 100644 --- a/code/__HELPERS/text.dm +++ b/code/__HELPERS/text.dm @@ -654,7 +654,7 @@ GLOBAL_LIST_INIT(binary, list("0","1")) buffer = copytext(buffer, 1, cutoff) + punctbuffer if(!findtext(buffer,alphanumeric)) continue - if(!buffer || lentext(buffer) > 140 || lentext(buffer) <= cullshort || buffer in accepted) + if(!buffer || lentext(buffer) > 280 || lentext(buffer) <= cullshort || buffer in accepted) continue accepted += buffer