Skip to content

Commit

Permalink
Fixed Skill.cs to temporarily allow Mod skills by labeling them as "U…
Browse files Browse the repository at this point in the history
…nknown" its just a quick fix to allow people to continue using the program as it was intended. If they want to modify those other skills they will show up as "Unknown" for now and they can figure it out manually or just focus on the vanilla skills.
  • Loading branch information
BrandonT80 authored and Wufflez committed Jan 26, 2022
1 parent be93e22 commit 1eaa477
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Loki/Skill.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ private static string GetSkillName(SkillType type)
SkillType.Ride => Properties.Resources.Riding,
SkillType.All => Properties.Resources.All,
//_ => throw new ArgumentOutOfRangeException(nameof(type), type, "Unrecognised skill type"),
_ => Properties.Resources.Unknown,
};

public SkillType Type { get; }
Expand Down

0 comments on commit 1eaa477

Please sign in to comment.