From 411e72ef0bf92c2a0cb711dd40991b6b244d769a Mon Sep 17 00:00:00 2001
From: Zin <62830952+Zintixx@users.noreply.github.com>
Date: Sun, 17 May 2026 22:31:19 -0700
Subject: [PATCH] Fix fame wrong type
---
Maple2.File.Parser/Maple2.File.Parser.csproj | 2 +-
Maple2.File.Parser/Xml/Table/FamePickMethod.cs | 5 ++---
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/Maple2.File.Parser/Maple2.File.Parser.csproj b/Maple2.File.Parser/Maple2.File.Parser.csproj
index 30091e6..fe8d1a0 100644
--- a/Maple2.File.Parser/Maple2.File.Parser.csproj
+++ b/Maple2.File.Parser/Maple2.File.Parser.csproj
@@ -13,7 +13,7 @@
MapleStory2, File, Parser, m2d, xml
true
- 2.4.12
+ 2.4.13
net8.0
README.md
enable
diff --git a/Maple2.File.Parser/Xml/Table/FamePickMethod.cs b/Maple2.File.Parser/Xml/Table/FamePickMethod.cs
index cd54f4a..4a4a1b0 100644
--- a/Maple2.File.Parser/Xml/Table/FamePickMethod.cs
+++ b/Maple2.File.Parser/Xml/Table/FamePickMethod.cs
@@ -10,7 +10,6 @@ public partial class FamePickMethod {
public partial class Environment : IFeatureLocale {
[M2dFeatureLocale] private IList _method;
-
}
public partial class PickMethod : IFeatureLocale {
@@ -19,11 +18,11 @@ public partial class PickMethod : IFeatureLocale {
[M2dArray] public int[] pickCountByRank = Array.Empty();
[XmlAttribute] public int reloadOnAccept;
[XmlAttribute] public int reloadOnComplete;
- [XmlElement] public List _alliance;
+ [XmlElement] public List alliance;
}
public class Alliance {
- [XmlAttribute] public int id;
+ [XmlAttribute] public string id = string.Empty;
}
}