[Bug Fix] Add a missing Froglok starting area for Titanium Startzone. (#4962)

* Add a missing Froglok starting area for Titanium Startzone.

* fix formatting.

* add a missing break.
This commit is contained in:
regneq 2025-07-04 09:53:45 -07:00 committed by GitHub
parent f7775c7a75
commit ab45d4358d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 1 deletions

View File

@ -988,7 +988,8 @@ enum StartZoneIndex {
Felwithe, Felwithe,
Akanon, Akanon,
Cabilis, Cabilis,
SharVahl SharVahl,
RatheMtn
}; };
enum FVNoDropFlagRule enum FVNoDropFlagRule

View File

@ -732,6 +732,12 @@ void WorldDatabase::SetTitaniumDefaultStartZone(PlayerProfile_Struct* in_pp, Cha
in_pp->binds[0].zone_id = Zones::SHARVAHL; // sharvahl in_pp->binds[0].zone_id = Zones::SHARVAHL; // sharvahl
break; break;
} }
case StartZoneIndex::RatheMtn:
{
in_pp->zone_id = Zones::RATHEMTN; // rathemtn
in_pp->binds[0].zone_id = Zones::RATHEMTN; // rathemtn
break;
}
} }
} }
} }