From 8e1a3f066f34196c7d7a08b344a36a9ae378aa91 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Wed, 24 Feb 2021 10:13:23 -0500 Subject: [PATCH] Core/Datastorage: Dont clear SpellNameStorage table, we use it else where. --- Source/Game/Spells/SpellManager.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Game/Spells/SpellManager.cs b/Source/Game/Spells/SpellManager.cs index 3d11b2082..c3fd2bc46 100644 --- a/Source/Game/Spells/SpellManager.cs +++ b/Source/Game/Spells/SpellManager.cs @@ -2348,8 +2348,6 @@ namespace Game.Entities mSpellInfoMap.Add(spellNameEntry.Id, new SpellInfo(spellNameEntry, data.Key.difficulty, data.Value, visuals)); } - CliDB.SpellNameStorage.Clear(); - Log.outInfo(LogFilter.ServerLoading, "Loaded SpellInfo store in {0} ms", Time.GetMSTimeDiffToNow(oldMSTime)); }