diff --git a/Modules/Migration.lua b/Modules/Migration.lua
index 6de38f9..b5aa269 100644
--- a/Modules/Migration.lua
+++ b/Modules/Migration.lua
@@ -45,4 +45,7 @@ function Migration:ToLatestProfileVersion(profileVersion)
     if profileVersion < 18 then
         ExtendedCharacterStats.profile.defense.defenseRating.isTbcOnly = true
     end
+    if profileVersion < 19 then
+        ExtendedCharacterStats.profile.melee.glance = defaultProfile.profile.melee.glance
+    end
 end
diff --git a/Modules/Profile.lua b/Modules/Profile.lua
index c7ea580..49d1e78 100755
--- a/Modules/Profile.lua
+++ b/Modules/Profile.lua
@@ -5,7 +5,7 @@ local Profile = ECSLoader:CreateModule("Profile")
 local Utils = ECSLoader:ImportModule("Utils")
 
 function Profile:GetProfileVersion()
-    return 18
+    return 19
 end
 
 ---@return ECSProfile