diff --git a/Projects/UOContent/Items/Special/Holiday/SnowStatue.cs b/Projects/UOContent/Items/Special/Holiday/SnowStatue.cs index 60862298c..07f25da96 100644 --- a/Projects/UOContent/Items/Special/Holiday/SnowStatue.cs +++ b/Projects/UOContent/Items/Special/Holiday/SnowStatue.cs @@ -91,7 +91,7 @@ public partial class SnowStatueDeed : Item AddBackground(0, 0, 360, 225, 0xA28); AddPage(1); - AddLabel(45, 15, 0, Localization.GetText(1156487, from.Language)); // Select One: + AddHtmlLocalized(45, 15, 200, 20, 1156487); // Select One: AddItem(35, 75, 0x456E); AddButton(65, 50, 0x845, 0x846, 1); diff --git a/Projects/UOContent/Spells/First/CreateFood.cs b/Projects/UOContent/Spells/First/CreateFood.cs index 506be0e25..5e7b467ce 100644 --- a/Projects/UOContent/Spells/First/CreateFood.cs +++ b/Projects/UOContent/Spells/First/CreateFood.cs @@ -48,9 +48,9 @@ public class CreateFoodSpell : MagerySpell if (Caster.NetState != null) { - var foodName = Localization.GetText(food.LabelNumber, Caster.Language); + // Not translated to the casters language because affixes are ascii only + var foodName = Localization.GetText(food.LabelNumber); - // Note: On OSI, the food name is not localized. // You magically create food in your backpack: Caster.SendLocalizedMessage(1042695, true, $" {foodName}"); }