diff --git a/SCHALE.Common/Extensions/CharacterExcelTExt.cs b/SCHALE.Common/Utils/CharacterExcelTExt.cs similarity index 87% rename from SCHALE.Common/Extensions/CharacterExcelTExt.cs rename to SCHALE.Common/Utils/CharacterExcelTExt.cs index 04a005c..161bcc5 100644 --- a/SCHALE.Common/Extensions/CharacterExcelTExt.cs +++ b/SCHALE.Common/Utils/CharacterExcelTExt.cs @@ -5,7 +5,7 @@ using System.Text; using System.Threading.Tasks; using SCHALE.Common.FlatData; -namespace SCHALE.Common.Extensions +namespace SCHALE.Common.Utils { public enum StudentType { @@ -21,7 +21,8 @@ namespace SCHALE.Common.Extensions if (!ch.CollectionVisibleEndDate.StartsWith("2099")) { return StudentType.Unique; - } else if (ch.CombineRecipeId == 0) + } + else if (ch.CombineRecipeId == 0) { return StudentType.Event; } diff --git a/SCHALE.Toolbox/Forms/PlayableCharacterForm.cs b/SCHALE.Toolbox/Forms/PlayableCharacterForm.cs index ee533b8..2c84da4 100644 --- a/SCHALE.Toolbox/Forms/PlayableCharacterForm.cs +++ b/SCHALE.Toolbox/Forms/PlayableCharacterForm.cs @@ -9,8 +9,8 @@ using System.Threading.Tasks; using System.Windows.Forms; using Microsoft.Extensions.Logging; using Newtonsoft.Json; -using SCHALE.Common.Extensions; using SCHALE.Common.FlatData; +using SCHALE.Common.Utils; using SCHALE.GameServer.Services; using SCHALE.Toolbox.Models.SchaleDB; using Serilog;