mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-06-10 17:57:46 +00:00
Fixing Actor ID in Cast packet
This commit is contained in:
parent
6cca2b80ad
commit
00f6441bf1
2 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ void Core::Action::ActionCast::onStart()
|
||||||
m_pSource->getAsPlayer()->sendDebug( "onStart()" );
|
m_pSource->getAsPlayer()->sendDebug( "onStart()" );
|
||||||
m_startTime = Util::getTimeMs();
|
m_startTime = Util::getTimeMs();
|
||||||
|
|
||||||
GamePacketNew< FFXIVIpcActorCast, ServerZoneIpcType > castPacket( getId() );
|
GamePacketNew< FFXIVIpcActorCast, ServerZoneIpcType > castPacket( m_pSource->getId() );
|
||||||
|
|
||||||
castPacket.data().action_id = m_id;
|
castPacket.data().action_id = m_id;
|
||||||
castPacket.data().unknown = 1;
|
castPacket.data().unknown = 1;
|
||||||
|
|
|
@ -45,7 +45,7 @@ void Core::Action::ActionTeleport::onStart()
|
||||||
|
|
||||||
m_startTime = Util::getTimeMs();
|
m_startTime = Util::getTimeMs();
|
||||||
|
|
||||||
GamePacketNew< FFXIVIpcActorCast, ServerZoneIpcType > castPacket( getId() );
|
GamePacketNew< FFXIVIpcActorCast, ServerZoneIpcType > castPacket( m_pSource->getId() );
|
||||||
|
|
||||||
castPacket.data().action_id = 5;
|
castPacket.data().action_id = 5;
|
||||||
castPacket.data().unknown = 1;
|
castPacket.data().unknown = 1;
|
||||||
|
|
Loading…
Add table
Reference in a new issue