少年修仙传客户端代码仓库
client_Wu Xijin
2019-02-19 76d6b00a6a4d8027e7a9ab0e87e56a6b28a08bb1
System/KnapSack/Logic/PackSendQuestMgr.cs
@@ -72,7 +72,7 @@
                return true;
            }
            bool isCanPut = true;
            bool wearable = true;
            for (int i = 0; i < uselimits.Length; i++)
            {
                switch (uselimits[i])
@@ -81,26 +81,26 @@
                        var level = PlayerDatas.Instance.baseData.LV;
                        if (level < config.UseLV)
                        {
                            isCanPut = false;
                            wearable = false;
                            ConfirmCancel.ShowPopConfirm(Language.Get("Mail101"),
                                Language.Get("EquipWinLevelLimit", config.UseLV, config.UseLV - level));
                        }
                        break;
                    case 1:
                        isCanPut = CheckPutOnRealm(config);
                        wearable = CheckPutOnRealm(config);
                        break;
                    case 2:
                        isCanPut = CheckPutOnNeed();
                        wearable = CheckPutOnNeed();
                        break;
                }
            }
            if (isCanPut)
            if (wearable)
            {
                CheckPutOnPlace();
            }
            return isCanPut;
            return wearable;
        }
        /// <summary>