From df002543526c2d60e22f1349751ffbf53de26005 Mon Sep 17 00:00:00 2001 From: coldud13 Date: Mon, 15 May 2023 23:41:46 +1000 Subject: [PATCH] [MANUAL MIRROR] Sets UNIQUE_RENAME max description length to 280, up from 140 (#75045) (#21132) Sets UNIQUE_RENAME max description length to 280, up from 140 (#75045) player creativity with their funky little mining tools or other implements of violence. or food items. ~~personally i just thought that 140 characters was too small~~ Co-authored-by: Hatterhat <31829017+Hatterhat@users.noreply.github.com> --- code/modules/paperwork/pen.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/paperwork/pen.dm b/code/modules/paperwork/pen.dm index f900b355522..23cb8066c2d 100644 --- a/code/modules/paperwork/pen.dm +++ b/code/modules/paperwork/pen.dm @@ -188,7 +188,7 @@ O.renamedByPlayer = TRUE if(penchoice == "Description") - var/input = tgui_input_text(user, "Describe [O]", "Description", "[O.desc]", 140) + var/input = tgui_input_text(user, "Describe [O]", "Description", "[O.desc]", 280) var/olddesc = O.desc if(QDELETED(O) || !user.can_perform_action(O)) return