From a1dd85e1e48c3d73ce311d359844e362c7e9f1b9 Mon Sep 17 00:00:00 2001 From: regneq Date: Tue, 1 Jul 2025 17:17:14 -0700 Subject: [PATCH] Add a missing Froglok starting area for Titanium Startzone. --- common/eq_constants.h | 3 ++- world/worlddb.cpp | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/common/eq_constants.h b/common/eq_constants.h index f67618bac..fb2bd2fa3 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..595a492a8 100644 --- a/world/worlddb.cpp +++ b/world/worlddb.cpp @@ -732,6 +732,11 @@ 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 + } } } }