吾爱尚玩资源基地

标题: 魔兽私服模拟器 小德变熊血量的上限突破代码 [打印本页]

作者: admin    时间: 2016-4-18 22:23
标题: 魔兽私服模拟器 小德变熊血量的上限突破代码
Index: SpellAuras.cpp===================================================================
--- SpellAuras.cpp        (revision 421)
+++ SpellAuras.cpp        (working copy)
@@ -4833,7 +4947,7 @@
     if ((m_modifier.m_miscvalue == STAT_STAMINA) && (maxHPValue > 0) && (m_spellProto->Attributes & 0x10))
     {
         // newHP = (curHP / maxHP) * newMaxHP = (newMaxHP * curHP) / maxHP -> which is better because no int -> double -> int conversion is needed
-        uint32 newHPValue = (m_target->GetMaxHealth() * curHPValue) / maxHPValue;
+        uint32 newHPValue = (uint64(m_target->GetMaxHealth()) * uint64(curHPValue)) / maxHPValue;
         m_target->SetHealth(newHPValue);
     }
}






欢迎光临 吾爱尚玩资源基地 (http://bbs.523play.com/) Powered by Discuz! X3.4