Beast Dietary Supplements now also affect the pet's loyalty gain by the same amount as the supplements effect on experience gain.

https://github.com/SWG-Source/qa-testing/issues/287
This commit is contained in:
Reedux
2021-01-12 17:27:03 +00:00
parent bcc92d6ce0
commit ddb9fad130

View File

@@ -1097,6 +1097,9 @@ public class beast_lib extends script.base_script
modifiedHappiness *= multiplier;
}
float newLoyalty = loyalty + modifiedHappiness;
if (buff.hasBuff(getBCDBeastCalled(bcd), "bm_beast_steroid")) {
newLoyalty *= utils.getIntScriptVar(getBCDBeastCalled(bcd), "beastBuff.beastXpBonusPercent");
}
if (loyalty < LOYALTY_LVL_TWO && newLoyalty >= LOYALTY_LVL_TWO)
{
incrementBeastLoyaltyLevel(bcd);