From f448a4aff7c479db081175c9206913cc6dedf553 Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期二, 09 十二月 2025 16:23:03 +0800
Subject: [PATCH] 0312 优化字符串拼接函数

---
 Main/System/Store/StoreModel.cs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Main/System/Store/StoreModel.cs b/Main/System/Store/StoreModel.cs
index 35e8337..071d77b 100644
--- a/Main/System/Store/StoreModel.cs
+++ b/Main/System/Store/StoreModel.cs
@@ -557,7 +557,7 @@
         int state = GetShopIDState(shopID);
         if (state == 1 || state == 3)
         {
-            SysNotifyMgr.Instance.ShowTip(StringUtility.Contact("StoreTip", state));
+            SysNotifyMgr.Instance.ShowTip(StringUtility.Contact("StoreTip", state.ToString()));
             return false;
         }
         return true;

--
Gitblit v1.8.0