1
0
Fork 0

Merge pull request #679 from mc-server/NotchDeath

NotchApple
This commit is contained in:
Alexander Harkness 2014-02-15 19:04:13 +00:00
commit 584f7bd806
1 changed files with 6 additions and 0 deletions

View File

@ -839,6 +839,12 @@ void cPlayer::KilledBy(cEntity * a_Killer)
cItems Pickups;
m_Inventory.CopyToItems(Pickups);
m_Inventory.Clear();
if (GetName() == "Notch")
{
Pickups.Add(cItem(E_ITEM_RED_APPLE));
}
m_World->SpawnItemPickups(Pickups, GetPosX(), GetPosY(), GetPosZ(), 10);
SaveToDisk(); // Save it, yeah the world is a tough place !