summaryrefslogtreecommitdiffstats
path: root/src/WorldStorage/NBTChunkSerializer.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-02-24 18:30:44 +0100
committerMattes D <github@xoft.cz>2014-02-24 18:30:44 +0100
commit23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6 (patch)
treedd8975008870688e77b33a20072fd54e7e34bb9c /src/WorldStorage/NBTChunkSerializer.cpp
parentMerge pull request #722 from mc-server/CompileFix_C++03 (diff)
parentFixed Formatting, added compiler warning suppressing methods, fixed comments (diff)
downloadcuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar
cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.gz
cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.bz2
cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.lz
cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.xz
cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.zst
cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.zip
Diffstat (limited to 'src/WorldStorage/NBTChunkSerializer.cpp')
-rw-r--r--src/WorldStorage/NBTChunkSerializer.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/WorldStorage/NBTChunkSerializer.cpp b/src/WorldStorage/NBTChunkSerializer.cpp
index 2a1eda523..c1c659b36 100644
--- a/src/WorldStorage/NBTChunkSerializer.cpp
+++ b/src/WorldStorage/NBTChunkSerializer.cpp
@@ -409,6 +409,14 @@ void cNBTChunkSerializer::AddMonsterEntity(cMonster * a_Monster)
m_Writer.BeginCompound("");
AddBasicEntity(a_Monster, EntityClass);
+ m_Writer.BeginList("DropChances", TAG_Float);
+ m_Writer.AddFloat("", a_Monster->GetDropChanceWeapon());
+ m_Writer.AddFloat("", a_Monster->GetDropChanceHelmet());
+ m_Writer.AddFloat("", a_Monster->GetDropChanceChestplate());
+ m_Writer.AddFloat("", a_Monster->GetDropChanceLeggings());
+ m_Writer.AddFloat("", a_Monster->GetDropChanceBoots());
+ m_Writer.EndList();
+ m_Writer.AddByte("CanPickUpLoot", (char)a_Monster->CanPickUpLoot());
switch (a_Monster->GetMobType())
{
case cMonster::mtBat: