diff options
author | madmaxoft <github@xoft.cz> | 2013-09-20 22:02:11 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-09-20 22:02:11 +0200 |
commit | 5cfc108e8379be84abaa28208e49804033893694 (patch) | |
tree | a907473fc536040a6656d08579a3d70f618f0532 /source/Mobs/EnderDragon.cpp | |
parent | Fixed rounding errors in cProtocol125::SendExplosion(). (diff) | |
parent | Fixed pickup block spawning (diff) | |
download | cuberite-5cfc108e8379be84abaa28208e49804033893694.tar cuberite-5cfc108e8379be84abaa28208e49804033893694.tar.gz cuberite-5cfc108e8379be84abaa28208e49804033893694.tar.bz2 cuberite-5cfc108e8379be84abaa28208e49804033893694.tar.lz cuberite-5cfc108e8379be84abaa28208e49804033893694.tar.xz cuberite-5cfc108e8379be84abaa28208e49804033893694.tar.zst cuberite-5cfc108e8379be84abaa28208e49804033893694.zip |
Diffstat (limited to 'source/Mobs/EnderDragon.cpp')
-rw-r--r-- | source/Mobs/EnderDragon.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/source/Mobs/EnderDragon.cpp b/source/Mobs/EnderDragon.cpp new file mode 100644 index 000000000..64f2bedfa --- /dev/null +++ b/source/Mobs/EnderDragon.cpp @@ -0,0 +1,27 @@ + +#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules + +#include "EnderDragon.h" + + + + + +cEnderDragon::cEnderDragon(void) : + // TODO: Vanilla source says this, but is it right? Dragons fly, they don't stand + super("EnderDragon", 63, "mob.enderdragon.hit", "mob.enderdragon.end", 16.0, 8.0) +{ +} + + + + + +void cEnderDragon::GetDrops(cItems & a_Drops, cEntity * a_Killer) +{ + return; +} + + + + |