Merge pull request #524 from uramer/0.7.0summon_duration

Make the server receive the correct summon durations regardless of spell casting order
pull/526/head
David Cernat 5 years ago committed by GitHub
commit a2f110ae6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -324,14 +324,18 @@ namespace MWMechanics
Make it easy to get an effect's duration
*/
float ActiveSpells::getEffectDuration(short effectId)
float ActiveSpells::getEffectDuration(short effectId, std::string sourceId)
{
for (TContainer::iterator it = mSpells.begin(); it != mSpells.end(); ++it)
{
for (std::vector<ActiveEffect>::iterator effectIt = it->second.mEffects.begin();
effectIt != it->second.mEffects.end();)
if (sourceId.compare(it->first) == 0)
{
return effectIt->mDuration;
for (std::vector<ActiveEffect>::iterator effectIt = it->second.mEffects.begin();
effectIt != it->second.mEffects.end(); it++)
{
if (effectIt->mEffectId == effectId)
return effectIt->mDuration;
}
}
}
return 0.f;

@ -109,7 +109,7 @@ namespace MWMechanics
Make it easy to get an effect's duration
*/
float getEffectDuration(short effectId);
float getEffectDuration(short effectId, std::string sourceId);
/*
End of tes3mp addition
*/

@ -111,8 +111,8 @@ namespace MWMechanics
objectList->packetOrigin = mwmp::CLIENT_GAMEPLAY;
MWMechanics::CreatureStats *actorCreatureStats = &mActor.getClass().getCreatureStats(mActor);
objectList->addObjectSpawn(placed, mActor, actorCreatureStats->getActiveSpells().getEffectDuration(it->first));
float duration = actorCreatureStats->getActiveSpells().getEffectDuration(it->first, it->second);
objectList->addObjectSpawn(placed, mActor, duration);
objectList->sendObjectSpawn();
}

Loading…
Cancel
Save