diff options
author | tycho <work.tycho@gmail.com> | 2015-05-23 16:33:52 +0200 |
---|---|---|
committer | tycho <work.tycho@gmail.com> | 2015-05-23 16:33:52 +0200 |
commit | 81c0116cf1c0b06e24f9f69e219c3f1e302d81e2 (patch) | |
tree | 8df120fde19c9c27f5a8681a7952aa9e802bc800 /src/Mobs/Horse.h | |
parent | Merge branch 'master' into PreventNewWarnings (diff) | |
parent | Merge pull request #2117 from Seadragon91/clang_errors (diff) | |
download | cuberite-81c0116cf1c0b06e24f9f69e219c3f1e302d81e2.tar cuberite-81c0116cf1c0b06e24f9f69e219c3f1e302d81e2.tar.gz cuberite-81c0116cf1c0b06e24f9f69e219c3f1e302d81e2.tar.bz2 cuberite-81c0116cf1c0b06e24f9f69e219c3f1e302d81e2.tar.lz cuberite-81c0116cf1c0b06e24f9f69e219c3f1e302d81e2.tar.xz cuberite-81c0116cf1c0b06e24f9f69e219c3f1e302d81e2.tar.zst cuberite-81c0116cf1c0b06e24f9f69e219c3f1e302d81e2.zip |
Diffstat (limited to 'src/Mobs/Horse.h')
-rw-r--r-- | src/Mobs/Horse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mobs/Horse.h b/src/Mobs/Horse.h index be283705e..27168ebae 100644 --- a/src/Mobs/Horse.h +++ b/src/Mobs/Horse.h @@ -26,7 +26,7 @@ public: bool IsEating (void) const {return m_bIsEating; } bool IsRearing (void) const {return m_bIsRearing; } bool IsMthOpen (void) const {return m_bIsMouthOpen; } - bool IsTame (void) const {return m_bIsTame; } + bool IsTame (void) const override {return m_bIsTame; } int GetHorseType (void) const {return m_Type; } int GetHorseColor (void) const {return m_Color; } int GetHorseStyle (void) const {return m_Style; } |