Skip to content

Commit

Permalink
Remove artificial chat length limitation. Thanks @stonejohnson for fi…
Browse files Browse the repository at this point in the history
…nding this.
  • Loading branch information
cinderblocks committed Dec 29, 2024
1 parent 463eb3c commit 7993698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LibreMetaverse/AgentManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1600,7 +1600,7 @@ public void Chat(string message, int channel, ChatType type,bool allow_split_mes
chunkid++;
}
}
else if ((message.Length > 0) && (message.Length < 1000))
else
{
ChatFromViewerPacket chat = new ChatFromViewerPacket
{
Expand Down

0 comments on commit 7993698

Please sign in to comment.