fix: user data changes not cleared

This commit is contained in:
2025-12-28 20:12:21 +03:00
parent 7c3a2dab89
commit 5937e026eb
4 changed files with 5 additions and 3 deletions
@@ -17,6 +17,7 @@ internal class RoomListHandler: IHandler
{
var roomCount = reader.ReadUShort();
var roomList = new RagonRoomInformation[roomCount];
for (int i = 0; i < roomCount; i++)
{
var id = reader.ReadString();
+1
View File
@@ -98,6 +98,7 @@ namespace Ragon.Client
}
}
_changesCache.Clear();
_localChanges.Clear();
}
}