1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 06:56:10 +00:00

Correction filtre classe de lanceur de sorts

This commit is contained in:
Yan Maniez 2018-05-15 19:10:15 +02:00
parent e75aba6a34
commit 0cb909927b

View file

@ -31,7 +31,7 @@ namespace AideDeJeu.Services
(int.Parse(spell.Level) <= int.Parse(niveauMax)) &&
spell.Type.Contains(ecole) &&
spell.Source.Contains(source) &&
spell.Type.Contains(classe) &&
spell.Source.Contains(classe) &&
spell.Type.Contains(rituel)
)
.OrderByDescending(spell => spell.NamePHB)