From 3a6d02aaccb4763610353cdef55bc9302d126b58 Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期四, 04 十二月 2025 14:49:56 +0800
Subject: [PATCH] 76 聊天系统-客户端 世界聊天弹幕去除区服信息,弹幕去掉底图,文字加包边
---
Main/System/Chat/ChatBulletView.cs | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/Main/System/Chat/ChatBulletView.cs b/Main/System/Chat/ChatBulletView.cs
index 95f8804..c7d5564 100644
--- a/Main/System/Chat/ChatBulletView.cs
+++ b/Main/System/Chat/ChatBulletView.cs
@@ -50,8 +50,7 @@
switch (channel)
{
case ChatChannel.World:
- string serverName = ServerListCenter.Instance.GetServerName((int)data.ServerID);
- return Language.Get("Chat16", serverName, data.Name, data.Content);
+ return Language.Get("Chat17", data.Name, data.Content);
case ChatChannel.Guild:
return Language.Get("Chat16", Language.Get("ChatTab1"), data.Name, data.Content);
default:
--
Gitblit v1.8.0