From ab45d4358d36683ed9a939e596226949a56bb4dd Mon Sep 17 00:00:00 2001 From: regneq Date: Fri, 4 Jul 2025 09:53:45 -0700 Subject: [PATCH] [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. --- common/eq_constants.h | 3 ++- world/worlddb.cpp | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/common/eq_constants.h b/common/eq_constants.h index f67618bac..b577b9fb3 100644 --- a/common/eq_constants.h +++ b/common/eq_constants.h @@ -988,7 +988,8 @@ enum StartZoneIndex { Felwithe, Akanon, Cabilis, - SharVahl + SharVahl, + RatheMtn }; enum FVNoDropFlagRule diff --git a/world/worlddb.cpp b/world/worlddb.cpp index 9ca580c40..9501670fd 100644 --- a/world/worlddb.cpp +++ b/world/worlddb.cpp @@ -732,6 +732,12 @@ void WorldDatabase::SetTitaniumDefaultStartZone(PlayerProfile_Struct* in_pp, Cha in_pp->binds[0].zone_id = Zones::SHARVAHL; // sharvahl break; } + case StartZoneIndex::RatheMtn: + { + in_pp->zone_id = Zones::RATHEMTN; // rathemtn + in_pp->binds[0].zone_id = Zones::RATHEMTN; // rathemtn + break; + } } } }