Increase paper max char limit to 10,000 (#37270)

HOP MAINS REJOICE
This commit is contained in:
Ethan_k
2025-05-10 08:12:17 -07:00
committed by GitHub
parent 51205454f3
commit 0512de555d

View 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();