From 41fd4876cf67871ac917b575e1db38cec374976e Mon Sep 17 00:00:00 2001 From: Ben Carter Date: Wed, 11 Dec 2024 15:40:44 -0500 Subject: [PATCH] renamed function --- src/MpDataStore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MpDataStore.cpp b/src/MpDataStore.cpp index 5ebbfec..16f6460 100644 --- a/src/MpDataStore.cpp +++ b/src/MpDataStore.cpp @@ -269,7 +269,7 @@ int32 MpDataStore::LoadScaleFactors() { _scaleFactors->clear(); // 0 1 2 3 4 5 - QueryResult result = WorldDatabase.Query("SELECT mapId, dmg_bonus, spell_bonus, hp_bonus, difficulty, max FROM mythic_plus_scale_factors"); + QueryResult result = WorldDatabase.Query("SELECT mapId, dmg_bonus, spell_bonus, hp_bonus, difficulty, max FROM mp_scale_factors"); if (!result) { MpLogger::error("Failed to load mythic scale factors from database"); return 0;