更新最新框架

This commit is contained in:
Bob.Song
2025-11-11 17:43:11 +08:00
parent 7b10d4cb31
commit fd3c6ec38d
1048 changed files with 11041 additions and 87002 deletions

View File

@@ -36,7 +36,7 @@ public static class ChatChannelCenterComponentSystem
}
//查数据库
channel = await self.Scene.World.DataBase.Query<ChatChannel>(channelId, true);
channel = await self.Scene.World.Database.Query<ChatChannel>(channelId, true);
if (channel != null)
{
self.Channels.Add(channel.Id, channel);
@@ -58,7 +58,7 @@ public static class ChatChannelCenterComponentSystem
channel.CreateTime = TimeHelper.Now;
self.Channels.Add(channel.Id, channel);
//保存到数据库
await self.Scene.World.DataBase.Save(channel);
await self.Scene.World.Database.Save(channel);
return channel;
}