Skip to content

Commit

Permalink
zzre: fix type of SpellRow.Info (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
AcipenserSturio authored Jan 30, 2024
1 parent fd6ba5a commit e5f31b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zzio/db/SpellRow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public SpellRow(MappedDB mappedDB, Row row) : base(ModuleType.Spell, mappedDB, r
public byte PriceB => row.cells[4].Byte;
public byte PriceC => row.cells[5].Byte;

public string Info => row.cells[6].String;
public string Info => foreignText(6);

public int Mana => row.cells[7].Integer;

Expand Down

0 comments on commit e5f31b7

Please sign in to comment.