]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Increase paper max char limit to 10,000 (#37270)
authorEthan_k <eknowles27@dtechhs.org>
Sat, 10 May 2025 15:12:17 +0000 (08:12 -0700)
committerGitHub <noreply@github.com>
Sat, 10 May 2025 15:12:17 +0000 (17:12 +0200)
HOP MAINS REJOICE

Content.Shared/Paper/PaperComponent.cs

index cd0758589db9727a37ba9eb52be4b722a957eea4..056bd70f30e8e397fbf06047bb93834651065487 100644 (file)
@@ -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<StampDisplayInfo> StampedBy { get; set; } = new();