From 79e8945e9535b5b4daa6c447c3e0dd02061d5728 Mon Sep 17 00:00:00 2001
From: Client_PangDeRong <593317293@qq.com>
Date: 星期五, 04 一月 2019 10:11:32 +0800
Subject: [PATCH] 2654 【BUG】【1.4.100】仙缘币绑玉快捷弹框BUG

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

diff --git a/System/Store/StoreModel.cs b/System/Store/StoreModel.cs
index ae9a585..fe3615d 100644
--- a/System/Store/StoreModel.cs
+++ b/System/Store/StoreModel.cs
@@ -466,14 +466,14 @@
         bool isLimitBuy = TryGetLimitBuy(storeConfig, out canBuyCnt, out addBuyCnt);
         if (!isLimitBuy) return false;
 
-        int remainNum = canBuyCnt;
+        remainCnt = canBuyCnt;
         BuyShopItemLimit shopItemLimit = GetBuyShopLimit((uint)storeConfig.ID);
         if (shopItemLimit != null)
         {
-            remainNum -= shopItemLimit.BuyCnt;
+            remainCnt -= shopItemLimit.BuyCnt;
         }
 
-        if (remainNum <= 0)
+        if (remainCnt <= 0)
         {
             return true;
         }

--
Gitblit v1.8.0