mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-29 22:45:44 +00:00
Correctif
This commit is contained in:
parent
b051aa6d15
commit
64bd6411f7
4 changed files with 8 additions and 8 deletions
|
|
@ -226,7 +226,7 @@ namespace AideDeJeuLib
|
|||
{ "PersonalityDefectItem", typeof(PersonalityDefectItem) },
|
||||
{ "BackgroundSpecialtyItem", typeof(BackgroundSpecialtyItem) },
|
||||
{ "BackgroundItem", typeof(BackgroundItem) },
|
||||
{ "SkillItem", typeof(SkillItem) },
|
||||
{ "FeatureItem", typeof(FeatureItem) },
|
||||
{ "ClassEquipmentItem", typeof(ClassEquipmentItem) },
|
||||
{ "ClassEvolutionItem", typeof(ClassEvolutionItem) },
|
||||
{ "ClassFeatureItem", typeof(ClassFeatureItem) },
|
||||
|
|
|
|||
|
|
@ -103,8 +103,8 @@ namespace AideDeJeu.ViewModels.PlayerCharacter
|
|||
SetProperty(ref _BackgroundSpecialty, value);
|
||||
}
|
||||
}
|
||||
private SkillItem _BackgroundSkill = null;
|
||||
public SkillItem BackgroundSkill
|
||||
private FeatureItem _BackgroundSkill = null;
|
||||
public FeatureItem BackgroundSkill
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
@ -116,8 +116,8 @@ namespace AideDeJeu.ViewModels.PlayerCharacter
|
|||
OnPropertyChanged(nameof(BackgroundOrSubBackgroundSkill));
|
||||
}
|
||||
}
|
||||
private SkillItem _SubBackgroundSkill = null;
|
||||
public SkillItem SubBackgroundSkill
|
||||
private FeatureItem _SubBackgroundSkill = null;
|
||||
public FeatureItem SubBackgroundSkill
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
@ -129,7 +129,7 @@ namespace AideDeJeu.ViewModels.PlayerCharacter
|
|||
OnPropertyChanged(nameof(BackgroundOrSubBackgroundSkill));
|
||||
}
|
||||
}
|
||||
public SkillItem BackgroundOrSubBackgroundSkill
|
||||
public FeatureItem BackgroundOrSubBackgroundSkill
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
|
|||
|
|
@ -763,7 +763,7 @@ namespace AideDeJeu.ViewModels.PlayerCharacter
|
|||
}
|
||||
}
|
||||
|
||||
public async Task<SkillItem> LoadSkillAsync(BackgroundItem background)
|
||||
public async Task<FeatureItem> LoadSkillAsync(BackgroundItem background)
|
||||
{
|
||||
if (background != null)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -728,7 +728,7 @@ namespace AideDeJeu.ViewModels
|
|||
modelBuilder.Entity<PersonalityDefectItem>();
|
||||
modelBuilder.Entity<BackgroundSpecialtyItem>();
|
||||
modelBuilder.Entity<BackgroundItem>();
|
||||
modelBuilder.Entity<SkillItem>();
|
||||
modelBuilder.Entity<FeatureItem>();
|
||||
modelBuilder.Entity<ClassEquipmentItem>();
|
||||
modelBuilder.Entity<ClassEvolutionItem>();
|
||||
modelBuilder.Entity<ClassFeatureItem>();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue