Skip to content

Commit

Permalink
Merge pull request #1 from Interesting-exe/WasdMenu-added
Browse files Browse the repository at this point in the history
fix recursive equip/unequip submenu creation
  • Loading branch information
Interesting-exe authored Jun 11, 2024
2 parents cff2f6c + f00a8ec commit c054cbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Store/src/menu/menu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public static void DisplayItemOption(CCSPlayerController player, Dictionary<stri
player.PrintToChatMessage("Purchase Unequip", item["name"]);
DisplayItemOption(player, item, option);
DisplayItemOption(player, item, prev);
}, "menu_store<unequip>");
}
else
Expand All @@ -211,7 +211,7 @@ public static void DisplayItemOption(CCSPlayerController player, Dictionary<stri
player.PrintToChatMessage("Purchase Equip", item["name"]);
DisplayItemOption(player, item, option);
DisplayItemOption(player, item, prev);
}, "menu_store<equip>");
}

Expand Down

0 comments on commit c054cbf

Please sign in to comment.