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 + } } } }