Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Night-GUA committed Aug 13, 2024
1 parent bfde421 commit f31c623
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions YuEzTools/Patches/MainMenuManagerPatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -168,16 +168,16 @@ void FormatButtonColor(PassiveButton button, Sprite borderType, Color inActiveCo
var s = "";
if (DevsButton == null) DevsButton = CreatButton("DevsButton", () =>
{
s = "";
foreach (var dev in DevManager.DevUserList)
{
if (dev.Jobs != "NotJob")
s += $"<color={dev.Color}>{dev.Name}</color> => <size=60%>{GetString(dev.Jobs)}</size>\n";
}
CustomPopup.Show(GetString("DevsTitle"),
s
CustomPopup.Show(GetString("DevsTitle"), s
, new()
{
(Translator.GetString(StringNames.Okay), null)
(GetString(StringNames.Okay), null)
});
});
DevsButton.gameObject.SetActive(true);
Expand Down

0 comments on commit f31c623

Please sign in to comment.