1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-06 02:37:47 +00:00

Updated EventHandlerTypes

This commit is contained in:
Mordred 2022-02-18 00:03:04 +01:00 committed by collett
parent ba1b8aadfb
commit a9a628fe47
2 changed files with 10 additions and 3 deletions

View file

@ -54,7 +54,7 @@ namespace Sapphire::Event
Aetheryte = 0x0005,
GuildLeveAssignment = 0x0006,
DefaultTalk = 0x0009,
Craft = 0x000A,
Crafting = 0x000A,
CustomTalk = 0x000B,
CompanyLeveOfficer = 0x000C,
Array = 0x000D,
@ -65,7 +65,7 @@ namespace Sapphire::Event
ChocoboTaxiStand = 0x0012,
Opening = 0x0013,
ExitRange = 0x0014,
Fishing = 0x0015,
Fish = 0x0015,
GCShop = 0x0016,
GuildOrderGuide = 0x0017,
GuildOrderOfficer = 0x0018,
@ -75,7 +75,9 @@ namespace Sapphire::Event
BahamutGuide = 0x001C,
InstanceContentGuide = 0x001D,
HousingAethernet = 0x001E,
FcTalk = 0x001F,
SwitchTalk = 0x001F,
Adventure = 0x0020,
DailyQuestSupply = 0x0021,
Adventure = 0x0021,
DailyQuestSupply = 0x0022,
TripleTriad = 0x0023,

View file

@ -112,6 +112,11 @@ std::string Sapphire::World::Manager::EventMgr::getEventName( uint32_t eventId )
}*/
//return unknown + "GilShop";
}
case Event::EventHandler::EventHandlerType::SwitchTalk:
{
return "FcTalk";
}
default:
{
return unknown;