Updated profile SkillTypes property to use string to enum converter

Updated surrounding properties to not be null
Updated related code to reflect nullability change
This commit is contained in:
Chomp
2025-08-03 09:52:18 +01:00
parent d41691d358
commit 0ea5269756
9 changed files with 22 additions and 18 deletions
@@ -192,7 +192,7 @@ public class InventoryController(
continue;
}
profileSkill.Progress = mailEvent.Value;
profileSkill.Progress = (double)mailEvent.Value;
logger.Success($"Set profile skill: {mailEvent.Entity} to: {mailEvent.Value}");
break;
}