Skip to content

Commit 3b49d54

Browse files
committed
Fix compile errors
1 parent e57701b commit 3b49d54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Assets/CoreLibPackage/CoreLib.Equipment/Scripts/Patches/Emote_Patch.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ public static void OnOccupied(Emote __instance)
3131
private static void ApplyEmote(Emote __instance)
3232
{
3333
__instance.text.localize = true;
34-
__instance.textOutline.localize = true;
34+
// __instance.textOutline.localize = true;
3535

3636
string textToPrint = __instance.GetValue<string>("textToPrint");
3737
__instance.text.Render(textToPrint, true);
38-
__instance.textOutline.Render(textToPrint, true);
39-
__instance.textOutline.SetTempColor(Color.black);
38+
// __instance.textOutline.Render(textToPrint, true);
39+
// __instance.textOutline.SetTempColor(Color.black);
4040
}
4141
}
4242
}

0 commit comments

Comments
 (0)