1
0
mirror of https://github.com/oliverbooth/VpSharp synced 2024-11-14 16:45:41 +00:00

Add received world to hot cache

This commit is contained in:
Oliver Booth 2022-11-30 19:04:54 +00:00
parent 304b043c98
commit 00551e7777
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634

View File

@ -285,6 +285,7 @@ public sealed partial class VirtualParadiseClient
var state = (WorldState)vp_int(sender, IntegerAttribute.WorldState); var state = (WorldState)vp_int(sender, IntegerAttribute.WorldState);
world = new VirtualParadiseWorld(this, name) {AvatarCount = avatarCount, State = state}; world = new VirtualParadiseWorld(this, name) {AvatarCount = avatarCount, State = state};
_worlds[name] = world;
} }
if (_worldListChannel is not null) if (_worldListChannel is not null)