summaryrefslogtreecommitdiffstats
path: root/src/Entities/Entity.h
diff options
context:
space:
mode:
authorAlexander Harkness <me@bearbin.net>2015-10-31 23:18:27 +0100
committerAlexander Harkness <me@bearbin.net>2015-10-31 23:18:27 +0100
commitb13fd00ec44cc3fc4ad0395b3b9df04de00617b5 (patch)
tree671987e9a48544fd0fc37135732feebdca697caa /src/Entities/Entity.h
parentMerge pull request #2549 from cuberite/TouchGround (diff)
parentImplemented the FireResistence potion effects. (diff)
downloadcuberite-b13fd00ec44cc3fc4ad0395b3b9df04de00617b5.tar
cuberite-b13fd00ec44cc3fc4ad0395b3b9df04de00617b5.tar.gz
cuberite-b13fd00ec44cc3fc4ad0395b3b9df04de00617b5.tar.bz2
cuberite-b13fd00ec44cc3fc4ad0395b3b9df04de00617b5.tar.lz
cuberite-b13fd00ec44cc3fc4ad0395b3b9df04de00617b5.tar.xz
cuberite-b13fd00ec44cc3fc4ad0395b3b9df04de00617b5.tar.zst
cuberite-b13fd00ec44cc3fc4ad0395b3b9df04de00617b5.zip
Diffstat (limited to 'src/Entities/Entity.h')
-rw-r--r--src/Entities/Entity.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Entities/Entity.h b/src/Entities/Entity.h
index 0161db387..0f8297d73 100644
--- a/src/Entities/Entity.h
+++ b/src/Entities/Entity.h
@@ -367,7 +367,7 @@ public:
/** Sets whether the entity is fireproof */
void SetIsFireproof(bool a_IsFireproof);
- bool IsFireproof(void) const { return m_IsFireproof; }
+ virtual bool IsFireproof(void) const { return m_IsFireproof; }
/** Puts the entity on fire for the specified amount of ticks */
void StartBurning(int a_TicksLeftBurning);