This commit is contained in:
DESKTOP-SAJ6RKV\Administrator 2025-06-26 12:37:23 +08:00
parent 10b10d99a9
commit 149e748624

View File

@ -329,6 +329,11 @@ namespace GameLogic
// 直接扣
m_AllPush += (int)buff.addPower / 5;
if (m_AllPush <= 0)
{
m_AllPush = 0;
}
GameObject.Destroy(eGo);
});
@ -591,6 +596,11 @@ namespace GameLogic
// 直接扣
m_AllPush += (int)buff.addPower;
if (m_AllPush <= 0)
{
m_AllPush = 0;
}
return;
}