Reset player's armors after death UNTESTED. Fixes #896.

This commit is contained in:
Michael Yoo 2013-11-09 20:44:09 +10:30
parent 3498c876df
commit cb47bf82c9

View File

@ -169,7 +169,7 @@ class Entity extends Position{
} }
for($re = 0; $re < 3; $re++) for($re = 0; $re < 3; $re++)
{ {
//TODO: Test this. //TODO: Test this
$slot = $this->player->getArmor($re); $slot = $this->player->getArmor($re);
$this->player->setArmor($re, BlockAPI::getItem(AIR, 0, 0)); $this->player->setArmor($re, BlockAPI::getItem(AIR, 0, 0));
if($slot->getID() !== AIR and $slot->count > 0){ if($slot->getID() !== AIR and $slot->count > 0){