Add a missing Froglok starting area for Titanium Startzone.

This commit is contained in:
regneq
2025-07-01 17:17:14 -07:00
parent f7775c7a75
commit a1dd85e1e4
2 changed files with 7 additions and 1 deletions
+2 -1
View File
@@ -988,7 +988,8 @@ enum StartZoneIndex {
Felwithe, Felwithe,
Akanon, Akanon,
Cabilis, Cabilis,
SharVahl SharVahl,
RatheMtn
}; };
enum FVNoDropFlagRule enum FVNoDropFlagRule
+5
View File
@@ -732,6 +732,11 @@ 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
}
} }
} }
} }