LCEMP v1.1.0, bugfixes, multithreading server, local leaderboard, performance fixes, and more

This commit is contained in:
NOTPIES
2026-04-20 18:56:39 -04:00
parent fadeee4192
commit 7e7668c7fa
88 changed files with 4825 additions and 634 deletions

View File

@@ -164,6 +164,11 @@ void MultiplayerLocalPlayer::reallyDrop(shared_ptr<ItemEntity> itemEntity)
void MultiplayerLocalPlayer::chat(const wstring& message)
{
if (app.GetGameHostOption(eGameHostOption_ChatDisabled) != 0)
{
return;
}
connection->send( shared_ptr<ChatPacket>( new ChatPacket(message) ) );
}