diff options
Diffstat (limited to 'src/Mobs/MagmaCube.h')
-rw-r--r-- | src/Mobs/MagmaCube.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/Mobs/MagmaCube.h b/src/Mobs/MagmaCube.h index 3a7d25055..07794cc5a 100644 --- a/src/Mobs/MagmaCube.h +++ b/src/Mobs/MagmaCube.h @@ -18,19 +18,17 @@ public: CLASS_PROTODEF(cMagmaCube) - virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override; int GetSize(void) const { return m_Size; } /** Returns the text describing the slime's size, as used by the client's resource subsystem for sounds. Returns either "big" or "small". */ static AString GetSizeName(int a_Size); -protected: +private: + + virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override; + virtual bool IsNetherNative(void) override { return true; } /** Size of the MagmaCube, with 1 being the smallest */ int m_Size; } ; - - - - |