From 4a8971ce67d568dd321d09193d8a7091b7f9b36d Mon Sep 17 00:00:00 2001 From: regneq Date: Tue, 1 Jul 2025 17:27:08 -0700 Subject: [PATCH] add a missing break. --- world/worlddb.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/world/worlddb.cpp b/world/worlddb.cpp index 595a492a8..9501670fd 100644 --- a/world/worlddb.cpp +++ b/world/worlddb.cpp @@ -736,6 +736,7 @@ void WorldDatabase::SetTitaniumDefaultStartZone(PlayerProfile_Struct* in_pp, Cha { in_pp->zone_id = Zones::RATHEMTN; // rathemtn in_pp->binds[0].zone_id = Zones::RATHEMTN; // rathemtn + break; } } }