From 704d77e83c43ecf78394a6a82d21c0b991a8403d Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期一, 05 八月 2024 15:01:59 +0800
Subject: [PATCH] 5545 【越南】【主干】【港台】【砍树】神兽装备合成优化(神兽背包满时允许合成;)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_ItemCompound.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_ItemCompound.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_ItemCompound.py
index a858fcd..74520ef 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_ItemCompound.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Event/EventSrc/Operate_ItemCompound.py
@@ -104,7 +104,7 @@
     needSpace = int(math.ceil(float(compoundCnt) / makeItemData.GetPackCount()))
     emptySpace = ItemCommon.GetItemPackSpace(curPlayer, packType, needSpace)
     #验证背包空间
-    if needSpace > emptySpace:
+    if needSpace > emptySpace and packType not in [ShareDefine.rptDogzItem]:
         #PlayerControl.NotifyCode(curPlayer, "GeRen_lhs_202580")
         PlayerControl.NotifyCode(curPlayer, "GeRen_chenxin_676165", [packType])
         GameWorld.DebugLog("背包空间不足!packType=%s,needSpace=%s > emptySpace=%s" % (packType, needSpace, emptySpace), playerID)

--
Gitblit v1.8.0