fixes JsonConfig.Deserialize call

This commit is contained in:
Bohica 2025-07-02 23:02:13 -07:00 committed by GitHub
parent 4648947f38
commit 5e53d8116e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -116,7 +116,7 @@ namespace Server.Spells
var path = Path.Combine(Core.BaseDirectory, _configPath);
if (File.Exists(path))
{
JsonConfig.Deserialize(path, typeof(MagerySpell));
JsonConfig.Deserialize<MagerySpell>(path);
}
}
}