From 125b9d41c118366c6e5bc0b7fd9c3887ea7c0f40 Mon Sep 17 00:00:00 2001 From: MSWS Date: Wed, 18 Sep 2024 00:39:09 -0700 Subject: [PATCH] Add item #'s --- mod/Gangs.BombIconPerk/BombIconMenu.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/Gangs.BombIconPerk/BombIconMenu.cs b/mod/Gangs.BombIconPerk/BombIconMenu.cs index d0647f3..3eafd9a 100644 --- a/mod/Gangs.BombIconPerk/BombIconMenu.cs +++ b/mod/Gangs.BombIconPerk/BombIconMenu.cs @@ -50,11 +50,11 @@ override protected Task FormatItem(PlayerWrapper player, int index, BombIcon item) { if (item == data.Equipped) return Task.FromResult( - $"{ChatColors.DarkRed}{item} {ChatColors.Green}({ChatColors.Lime}Equipped{ChatColors.Green})"); + $"{index}. {ChatColors.DarkRed}{item} {ChatColors.Green}({ChatColors.Lime}Equipped{ChatColors.Green})"); if (item == data.Unlocked) return Task.FromResult( - $"{ChatColors.LightRed}{item} {ChatColors.Green}({ChatColors.BlueGrey}Unlocked{ChatColors.Green})"); + $"{index}. {ChatColors.LightRed}{item} {ChatColors.Green}({ChatColors.BlueGrey}Unlocked{ChatColors.Green})"); return Task.FromResult( - $"{ChatColors.Grey}{item} {ChatColors.DarkRed}({ChatColors.LightRed}{item.GetCost()}{ChatColors.DarkRed})"); + $"{index}. {ChatColors.Grey}{item} {ChatColors.DarkRed}({ChatColors.LightRed}{item.GetCost()}{ChatColors.DarkRed})"); } } \ No newline at end of file