1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-12-23 18:43:27 +00:00

Correctif

This commit is contained in:
Yan Maniez 2019-05-30 09:03:39 +02:00
parent 22125616e8
commit 8a23326836
8 changed files with 3083 additions and 3082 deletions

View file

@ -1,6 +1,6 @@
namespace AideDeJeuLib
{
public class SkillItemtoto : Item
public class SkillItem : Item
{
}
}

View file

@ -58,6 +58,7 @@ namespace AideDeJeu.ViewModels
public Item ParseItem(string source, ref ContainerBlock.Enumerator enumerator, Dictionary<string, Item> allItems)
{
var currentItem = GetNewItem(enumerator.Current);
Debug.Assert(currentItem != null, $"Item invalide : {source} {enumerator.Current.ToMarkdownString()}");
var currentProps = new Dictionary<string, PropertyInfo>();
currentItem.Markdown = string.Empty;
currentProps["Markdown"] = currentItem.GetType().GetProperty("Markdown", BindingFlags.Public | BindingFlags.Instance);