Fixed armor dropping twice

This commit is contained in:
Shoghi Cervantes 2014-11-27 23:19:46 +01:00
parent 98340522d9
commit 0bc9a9bdab

View File

@ -85,10 +85,6 @@ class Human extends Creature implements ProjectileSource, InventoryHolder{
foreach($this->inventory->getContents() as $item){
$drops[] = $item;
}
foreach($this->inventory->getArmorContents() as $item){
$drops[] = $item;
}
}
return $drops;