Skip to content

Commit

Permalink
add DisplayName conversion to legacy migrator
Browse files Browse the repository at this point in the history
  • Loading branch information
ryderbelserion committed Sep 9, 2024
1 parent a24894c commit 14385f6
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,12 @@ public void run() {
isSave = true;
}

if (prizeSection.contains("DisplayName")) {
set(prizeSection, "DisplayName", MiscUtils.convert(prizeSection.getString("DisplayName", " "), true));

isSave = true;
}

if (prizeSection.contains("Messages")) {
set(prizeSection, "Messages", MiscUtils.convert(prizeSection.getStringList("Messages"), true));

Expand Down

0 comments on commit 14385f6

Please sign in to comment.