Skip to content

Commit

Permalink
Fix ItemVariationTable (#42)
Browse files Browse the repository at this point in the history
* fix table

* another fix
  • Loading branch information
Zintixx authored Feb 7, 2025
1 parent 69e9066 commit a79526d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Maple2.File.Parser/Maple2.File.Parser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageTags>MapleStory2, File, Parser, m2d, xml</PackageTags>
<!-- Use following lines to write the generated files to disk. -->
<EmitCompilerGeneratedFiles Condition=" '$(Configuration)' == 'Debug' ">true</EmitCompilerGeneratedFiles>
<PackageVersion>2.2.0</PackageVersion>
<PackageVersion>2.2.1</PackageVersion>
<TargetFramework>net8.0</TargetFramework>
<PackageReadmeFile>README.md</PackageReadmeFile>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
2 changes: 1 addition & 1 deletion Maple2.File.Parser/Xml/Table/ItemOptionVariation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Maple2.File.Parser.Xml.Table;
// ./data/xml/table/itemoptionvariation.xml
[XmlRoot("ms2")]
public partial class ItemOptionVariation {
[M2dFeatureLocale(Selector = "OptionName")] private IList<Option> _option;
[M2dFeatureLocale(Selector = "OptionName|OptionRateMin|OptionRateMax|OptionValueMin|OptionValueMax")] private IList<Option> _option;

public partial class Option : IFeatureLocale {
[XmlAttribute] public string OptionName = string.Empty;
Expand Down

0 comments on commit a79526d

Please sign in to comment.