private void changeBoots(Hero hero)
        {
            var equipmentChoiceWindow = new EquipmentChoiceWindow(_Inventory);

            equipmentChoiceWindow.ShowDialog();
            int equipInventoryIndex = equipmentChoiceWindow.getChoiceFromSelect();

            if (_Inventory.findEquipmentByIndex(equipInventoryIndex).getIsBoots())
            {
                _Equipment = hero.getBoots().unEquip(hero);
                hero.setBoots(_Inventory.findEquipmentByIndex(equipInventoryIndex));
                hero.getBoots().equip(hero);
                _Inventory.removeFromEquipment(equipInventoryIndex);

                _Inventory.addToEquipmentByIndex(equipInventoryIndex, _Equipment);
            }

            else
            {
                MessageBox.Show("Cannot equip something that is not boots to this slot");
            }

            updateVisuals();
        }