Skip to content

Commit d89fe5a

Browse files
committed
Fix issues with faulty lovers chat
1 parent 5a5ab7a commit d89fe5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TownOfUs/Patches/Modifiers/LoverChatPatches.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static bool SendChatPatch(ChatController __instance)
2222

2323
var text = __instance.freeChatField.Text.WithoutRichText();
2424

25-
if (text.Length < 1 || text.Length > 100)
25+
if (text.Length < 1 || text.Length > 150)
2626
{
2727
return true;
2828
}

0 commit comments

Comments
 (0)