From: Ethan_k Date: Sat, 10 May 2025 15:12:17 +0000 (-0700) Subject: Increase paper max char limit to 10,000 (#37270) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=0512de555df1da016bedcf4a7c6c635274f53d01;p=space-station-14.git Increase paper max char limit to 10,000 (#37270) HOP MAINS REJOICE --- diff --git a/Content.Shared/Paper/PaperComponent.cs b/Content.Shared/Paper/PaperComponent.cs index cd0758589d..056bd70f30 100644 --- a/Content.Shared/Paper/PaperComponent.cs +++ b/Content.Shared/Paper/PaperComponent.cs @@ -12,7 +12,7 @@ public sealed partial class PaperComponent : Component public string Content { get; set; } = ""; [DataField("contentSize")] - public int ContentSize { get; set; } = 6000; + public int ContentSize { get; set; } = 10000; [DataField("stampedBy"), AutoNetworkedField] public List StampedBy { get; set; } = new();