From 8d21485057d24bce1d7f31f0c62d69d642330c55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=A8=E8=90=BD=E5=9F=BA=E5=9B=B4=E8=99=BE?= <3161880837@qq.com> Date: Sat, 4 Apr 2026 09:12:21 +0800 Subject: [PATCH] =?UTF-8?q?fix(Weapon):=20=E4=B8=BAtease=E6=96=87=E6=9C=AC?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=BC=95=E5=8F=B7=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在rebuildInfo方法中,为tease文本添加了引号包装,使其显示更符合对话文本的视觉要求 --- scripts/Structs/Weapon.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Structs/Weapon.gd b/scripts/Structs/Weapon.gd index 0e91f5a..0323b88 100644 --- a/scripts/Structs/Weapon.gd +++ b/scripts/Structs/Weapon.gd @@ -126,7 +126,7 @@ func rebuildInfo(showNext: bool = false): nameLabel.soulLevel = soulLevel nameLabel.level = level sourceLabel.text = " × ".join(sources) - teaseLabel.text = tease + teaseLabel.text = "“%s”" % tease energyLabel.text = "%.1f" % needEnergy beachball.count = costBeachball soul.count = soulLevel