diff options
author | worktycho <work.tycho@gmail.com> | 2015-12-14 21:31:33 +0100 |
---|---|---|
committer | worktycho <work.tycho@gmail.com> | 2015-12-14 21:31:33 +0100 |
commit | 1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84 (patch) | |
tree | 8adc41d291bdac3c83eb0c56933e7a29cd1c3942 /src/Entities/Pawn.h | |
parent | Merge pull request #2744 from cuberite/HopperMetaStrip (diff) | |
parent | blockheight mechanism (diff) | |
download | cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.tar cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.tar.gz cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.tar.bz2 cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.tar.lz cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.tar.xz cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.tar.zst cuberite-1e5ba8a1bb887808961e9c17dfd44af6bbbd2a84.zip |
Diffstat (limited to 'src/Entities/Pawn.h')
-rw-r--r-- | src/Entities/Pawn.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Entities/Pawn.h b/src/Entities/Pawn.h index 67878f699..0ceb1073e 100644 --- a/src/Entities/Pawn.h +++ b/src/Entities/Pawn.h @@ -25,7 +25,8 @@ public: virtual bool IsFireproof(void) const override; virtual void HandleAir(void) override; - + virtual void HandleFalling(void); + // tolua_begin /** Applies an entity effect @@ -49,12 +50,15 @@ public: /** Removes all currently applied entity effects (used when drinking milk) */ void ClearEntityEffects(void); - + // tolua_end protected: typedef std::map<cEntityEffect::eType, cEntityEffect *> tEffectMap; tEffectMap m_EntityEffects; + + double m_LastGroundHeight; + bool m_bTouchGround; } ; // tolua_export |