diff options
Diffstat (limited to 'src/Mobs/Skeleton.h')
-rw-r--r-- | src/Mobs/Skeleton.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/Mobs/Skeleton.h b/src/Mobs/Skeleton.h index 0316fb9b5..cb7dec5ad 100644 --- a/src/Mobs/Skeleton.h +++ b/src/Mobs/Skeleton.h @@ -13,7 +13,7 @@ class cSkeleton : typedef cAggressiveMonster super; public: - cSkeleton(bool IsWither); + cSkeleton(void); CLASS_PROTODEF(cSkeleton) @@ -23,12 +23,6 @@ public: virtual bool IsUndead(void) override { return true; } - bool IsWither(void) const { return m_bIsWither; } - -private: - - bool m_bIsWither; - } ; |