mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-20 11:47:47 +00:00
parse Event and PopRange into entries too
This commit is contained in:
parent
2d234bfc5c
commit
f77c1cd90b
1 changed files with 8 additions and 0 deletions
8
deps/datReader/DatCategories/bg/lgb.h
vendored
8
deps/datReader/DatCategories/bg/lgb.h
vendored
|
@ -255,6 +255,14 @@ struct LGB_GROUP
|
|||
{
|
||||
entries.push_back( std::make_shared< LGB_EXIT_RANGE_ENTRY >( buf, entryOffset ) );
|
||||
}
|
||||
else if( type == LgbEntryType::EventRange )
|
||||
{
|
||||
entries.push_back( std::make_shared< LGB_EVENT_RANGE_ENTRY >( buf, entryOffset ) );
|
||||
}
|
||||
else if( type == LgbEntryType::PopRange )
|
||||
{
|
||||
entries.push_back( std::make_shared< LGB_POP_RANGE_ENTRY >( buf, entryOffset ) );
|
||||
}
|
||||
else if( type == LgbEntryType::MapRange )
|
||||
{
|
||||
entries.push_back( std::make_shared< LGB_MAP_RANGE_ENTRY >( buf, entryOffset ) );
|
||||
|
|
Loading…
Add table
Reference in a new issue