From 8ef1e78393139971400a645d681d925c972d24ec Mon Sep 17 00:00:00 2001 From: Chomp Date: Tue, 17 Aug 2021 16:19:23 +0100 Subject: [PATCH] correct what skills output should be --- Generator/Models/Output/Output.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Generator/Models/Output/Output.cs b/Generator/Models/Output/Output.cs index a9916e2..6a56df8 100644 --- a/Generator/Models/Output/Output.cs +++ b/Generator/Models/Output/Output.cs @@ -109,15 +109,13 @@ namespace Generator.Models.Output { public Skills() { - Common = new Common(); + Common = new Dictionary(); } - public Common Common { get; set; } - } - public class Common - { + public Dictionary Common { get; set; } } + public class Chances { public Chances()