Skip to content

Commit

Permalink
Forgot these
Browse files Browse the repository at this point in the history
  • Loading branch information
nipkownix committed Dec 16, 2022
1 parent 30fa0f4 commit e4d3f82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dllmain/Trainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1452,11 +1452,11 @@ void InvItemAdder_SetPopUp(const char* popupname)
{
std::vector<ITEM_TYPE_mb> chosenTypes;

if (show_WEAPON) chosenTypes.push_back(ITEM_TYPE_WEAPON);
if (show_WEAPON) { chosenTypes.push_back(ITEM_TYPE_WEAPON); chosenTypes.push_back(ITEM_TYPE_GRENADE); }
if (show_AMMO) chosenTypes.push_back(ITEM_TYPE_AMMO);
if (show_TREASURE) chosenTypes.push_back(ITEM_TYPE_TREASURE);
if (show_TREASURE) { chosenTypes.push_back(ITEM_TYPE_TREASURE); chosenTypes.push_back(ITEM_TYPE_TREASURE_MERCS); }
if (show_CONSUMABLE) chosenTypes.push_back(ITEM_TYPE_CONSUMABLE);
if (show_KEY_ITEM) chosenTypes.push_back(ITEM_TYPE_KEY_ITEM);
if (show_KEY_ITEM) { chosenTypes.push_back(ITEM_TYPE_KEY_ITEM); chosenTypes.push_back(ITEM_TYPE_IMPORTANT); }
if (show_WEAPON_MOD) chosenTypes.push_back(ITEM_TYPE_WEAPON_MOD);
if (show_FILE) chosenTypes.push_back(ITEM_TYPE_FILE);
if (show_TREASURE_MAP) chosenTypes.push_back(ITEM_TYPE_TREASURE_MAP);
Expand Down

0 comments on commit e4d3f82

Please sign in to comment.