Увеличил количество символов в новостных статьях (#3309)

Co-authored-by: be quieti <be quieti@DESKTOP-2H3SMSL>
This commit is contained in:
Зюзя 2025-12-07 01:47:20 +05:00 committed by GitHub
parent 5e86500768
commit 8677f2f633
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,8 +4,8 @@ namespace Content.Shared.MassMedia.Systems;
public abstract class SharedNewsSystem : EntitySystem
{
public const int MaxTitleLength = 25;
public const int MaxContentLength = 2048;
public const int MaxTitleLength = 40; //Sunrise_Edit
public const int MaxContentLength = 8192; //Sunrise_Edit
}
[Serializable, NetSerializable]