mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-25 19:17:45 +00:00
update
This commit is contained in:
parent
7e09643b20
commit
5cc337b86c
2 changed files with 4 additions and 2 deletions
|
@ -395,7 +395,7 @@ namespace Sapphire::Network::ActorControl
|
||||||
|
|
||||||
RequestEventBattle = 0x232C,
|
RequestEventBattle = 0x232C,
|
||||||
|
|
||||||
Trigger612 = 0x264,
|
Trigger612 = 0x264, // AutoMoveFinished?
|
||||||
|
|
||||||
QuestJournalUpdateQuestVisibility = 0x2BE,
|
QuestJournalUpdateQuestVisibility = 0x2BE,
|
||||||
QuestJournalClosed = 0x2BF,
|
QuestJournalClosed = 0x2BF,
|
||||||
|
|
|
@ -280,7 +280,9 @@ void Sapphire::Network::GameConnection::eventHandlerMapInteraction( const Packet
|
||||||
Entity::Player& player )
|
Entity::Player& player )
|
||||||
{
|
{
|
||||||
const auto packet = ZoneChannelPacket< Client::FFXIVIpcMapInteractionHandler >( inPacket );
|
const auto packet = ZoneChannelPacket< Client::FFXIVIpcMapInteractionHandler >( inPacket );
|
||||||
if( packet.data().action == 0xD4 && player.getRace() == 3 ) // enter dwarf house lalafell only of course
|
auto action = packet.data().action;
|
||||||
|
player.sendDebug( "MapInteraction {}", action );
|
||||||
|
if( action == 0xD4 && player.getRace() == 3 ) // enter dwarf house lalafell only of course
|
||||||
{
|
{
|
||||||
// looks like shit but IT WORKS.
|
// looks like shit but IT WORKS.
|
||||||
auto x = packet.data().position.x;
|
auto x = packet.data().position.x;
|
||||||
|
|
Loading…
Add table
Reference in a new issue