1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-25 19:17:45 +00:00

Actually it is working and I'm going to do a separate PR alongside with some other related changes.

This reverts commit ed51e1537e.
This commit is contained in:
collett 2020-01-11 20:54:24 +09:00
parent ed51e1537e
commit 8d7c6f5188

View file

@ -28,7 +28,7 @@ uint64_t EffectBuilder::getResultDelayMs()
{
// todo: actually figure this retarded shit out
return Common::Util::getTimeMs() + 600;
return Common::Util::getTimeMs() + 850;
}
void EffectBuilder::moveToResultList( Entity::CharaPtr& chara, EffectResultPtr result )
@ -176,7 +176,6 @@ std::shared_ptr< FFXIVPacketBase > EffectBuilder::buildNextEffectPacket( uint32_
pHeader->effectCount = static_cast< uint8_t >( remainingTargetCount > packetSize ? packetSize : remainingTargetCount );
pHeader->sourceSequence = m_sequence;
pHeader->globalSequence = globalSequence;
pHeader->animationLockTime = 0.6f;
uint8_t targetIndex = 0;
for( auto it = m_resolvedEffects.begin(); it != m_resolvedEffects.end(); )