From e5f31b7ee3f5abe3c8960815c1f7840d802a2f6d Mon Sep 17 00:00:00 2001 From: Acipenser Sturio Date: Tue, 30 Jan 2024 12:26:57 +0300 Subject: [PATCH] zzre: fix type of SpellRow.Info (#296) --- zzio/db/SpellRow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zzio/db/SpellRow.cs b/zzio/db/SpellRow.cs index 5cb0b7c0..64fc6c14 100644 --- a/zzio/db/SpellRow.cs +++ b/zzio/db/SpellRow.cs @@ -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;