From dd41fc5fcde672b39cbacfeaffde0b1bcaa2790e Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Mon, 8 Jan 2024 21:18:55 -0500 Subject: [PATCH] [Bug Fix] Fix Typo in Character Skills loading (#3937) --- zone/zonedb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/zonedb.cpp b/zone/zonedb.cpp index 048180679..2bbde3d2e 100755 --- a/zone/zonedb.cpp +++ b/zone/zonedb.cpp @@ -800,7 +800,7 @@ bool ZoneDatabase::LoadCharacterSkills(uint32 character_id, PlayerProfile_Struct const auto& l = CharacterSkillsRepository::GetWhere( *this, fmt::format( - "`id` = {} ORDER BY `skill_id", + "`id` = {} ORDER BY `skill_id`", character_id ) );