diff options
author | Mattes D <github@xoft.cz> | 2014-11-23 12:33:04 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-11-23 12:33:04 +0100 |
commit | e9797c6a2a78d1caedc6cc2b6620b34e18a8b41f (patch) | |
tree | 2aabeb2ff85f9d8951b9837e132e4dabed9d6108 /src/Mobs/Pig.cpp | |
parent | cWorld: Changed generator defaults. (diff) | |
parent | Merge pull request #1612 from p-mcgowan/pigsIntoZombiePigmenOnLightning (diff) | |
download | cuberite-e9797c6a2a78d1caedc6cc2b6620b34e18a8b41f.tar cuberite-e9797c6a2a78d1caedc6cc2b6620b34e18a8b41f.tar.gz cuberite-e9797c6a2a78d1caedc6cc2b6620b34e18a8b41f.tar.bz2 cuberite-e9797c6a2a78d1caedc6cc2b6620b34e18a8b41f.tar.lz cuberite-e9797c6a2a78d1caedc6cc2b6620b34e18a8b41f.tar.xz cuberite-e9797c6a2a78d1caedc6cc2b6620b34e18a8b41f.tar.zst cuberite-e9797c6a2a78d1caedc6cc2b6620b34e18a8b41f.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Pig.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/Mobs/Pig.cpp b/src/Mobs/Pig.cpp index 55a4412ca..50b69e44f 100644 --- a/src/Mobs/Pig.cpp +++ b/src/Mobs/Pig.cpp @@ -98,3 +98,23 @@ void cPig::Tick(float a_Dt, cChunk & a_Chunk) + +bool cPig::DoTakeDamage(TakeDamageInfo & a_TDI) +{ + if (!super::DoTakeDamage(a_TDI)) + { + return false; + } + + if (a_TDI.DamageType == dtLightning) + { + Destroy(); + m_World->SpawnMob(GetPosX(), GetPosY(), GetPosZ(), mtZombiePigman); + return true; + } + return true; +} + + + + |