mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
some junk removal
This commit is contained in:
parent
7983b07b10
commit
63cd70f810
@ -54,8 +54,6 @@ namespace MWWorld
|
|||||||
|
|
||||||
assert(it != invStore.end());
|
assert(it != invStore.end());
|
||||||
|
|
||||||
bool equipped = false;
|
|
||||||
|
|
||||||
// equip the item in the first free slot
|
// equip the item in the first free slot
|
||||||
for (std::vector<int>::const_iterator slot=slots_.first.begin();
|
for (std::vector<int>::const_iterator slot=slots_.first.begin();
|
||||||
slot!=slots_.first.end(); ++slot)
|
slot!=slots_.first.end(); ++slot)
|
||||||
@ -68,7 +66,6 @@ namespace MWWorld
|
|||||||
if (slot == --slots_.first.end())
|
if (slot == --slots_.first.end())
|
||||||
{
|
{
|
||||||
invStore.equip(*slot, it, actor);
|
invStore.equip(*slot, it, actor);
|
||||||
equipped = true;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -76,7 +73,6 @@ namespace MWWorld
|
|||||||
{
|
{
|
||||||
// slot is not occupied
|
// slot is not occupied
|
||||||
invStore.equip(*slot, it, actor);
|
invStore.equip(*slot, it, actor);
|
||||||
equipped = true;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user