1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-25 14:07:46 +00:00

Updated EventHandlerTypes

This commit is contained in:
Mordred 2022-02-18 00:03:04 +01:00
parent 6f26d6f9b0
commit feaacefc95
2 changed files with 8 additions and 2 deletions

View file

@ -83,8 +83,10 @@ namespace Sapphire::Event
Aetheryte = 0x0005, Aetheryte = 0x0005,
GuildLeveAssignment = 0x0006, GuildLeveAssignment = 0x0006,
DefaultTalk = 0x0009, DefaultTalk = 0x0009,
Crafting = 0x000A,
CustomTalk = 0x000B, CustomTalk = 0x000B,
CompanyLeveOfficer = 0x000C, CompanyLeveOfficer = 0x000C,
Array = 0x000D,
CraftLeve = 0x000E, CraftLeve = 0x000E,
GimmickAccessor = 0x000F, GimmickAccessor = 0x000F,
GimmickBill = 0x0010, GimmickBill = 0x0010,
@ -92,6 +94,7 @@ namespace Sapphire::Event
ChocoboTaxiStand = 0x0012, ChocoboTaxiStand = 0x0012,
Opening = 0x0013, Opening = 0x0013,
ExitRange = 0x0014, ExitRange = 0x0014,
Fish = 0x0015,
GCShop = 0x0016, GCShop = 0x0016,
GuildOrderGuide = 0x0017, GuildOrderGuide = 0x0017,
GuildOrderOfficer = 0x0018, GuildOrderOfficer = 0x0018,
@ -99,8 +102,11 @@ namespace Sapphire::Event
Story = 0x001A, Story = 0x001A,
SpecialShop = 0x001B, SpecialShop = 0x001B,
BahamutGuide = 0x001C, BahamutGuide = 0x001C,
InstanceContentGuide = 0x001D,
HousingAethernet = 0x001E, HousingAethernet = 0x001E,
FcTalk = 0x001F, SwitchTalk = 0x001F,
Adventure = 0x0020,
DailyQuestSupply = 0x0021,
ICDirector = 0x8003, ICDirector = 0x8003,
QuestBattleDirector = 0x8006, QuestBattleDirector = 0x8006,
}; };

View file

@ -137,7 +137,7 @@ std::string EventMgr::getEventName( uint32_t eventId )
//return unknown + "GilShop"; //return unknown + "GilShop";
} }
case Event::EventHandler::EventHandlerType::FcTalk: case Event::EventHandler::EventHandlerType::SwitchTalk:
{ {
return "FcTalk"; return "FcTalk";
} }