diff options
author | Tycho <work.tycho+git@gmail.com> | 2015-01-16 14:27:10 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2015-01-16 14:27:10 +0100 |
commit | 7562a381c004470dfa8f0f94cd00f92d3c413f74 (patch) | |
tree | a3563323d9c98cb6216ba8c7e78e137d877df714 /src/Entities/ExpOrb.h | |
parent | Converted ArrowEntityTiers to std::chrono (diff) | |
download | cuberite-7562a381c004470dfa8f0f94cd00f92d3c413f74.tar cuberite-7562a381c004470dfa8f0f94cd00f92d3c413f74.tar.gz cuberite-7562a381c004470dfa8f0f94cd00f92d3c413f74.tar.bz2 cuberite-7562a381c004470dfa8f0f94cd00f92d3c413f74.tar.lz cuberite-7562a381c004470dfa8f0f94cd00f92d3c413f74.tar.xz cuberite-7562a381c004470dfa8f0f94cd00f92d3c413f74.tar.zst cuberite-7562a381c004470dfa8f0f94cd00f92d3c413f74.zip |
Diffstat (limited to 'src/Entities/ExpOrb.h')
-rw-r--r-- | src/Entities/ExpOrb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Entities/ExpOrb.h b/src/Entities/ExpOrb.h index e12e3c504..9aac4f748 100644 --- a/src/Entities/ExpOrb.h +++ b/src/Entities/ExpOrb.h @@ -26,10 +26,10 @@ public: virtual void SpawnOn(cClientHandle & a_Client) override; /** Returns the number of ticks that this entity has existed */ - int GetAge(void) const { return (int)(m_Timer / 50); } // tolua_export + int GetAge(void) const { return std::chrono::duration_cast<cTickTime>(m_Timer).count(); } // tolua_export /** Set the number of ticks that this entity has existed */ - void SetAge(int a_Age) { m_Timer = (float)(a_Age * 50); } // tolua_export + void SetAge(int a_Age) { m_Timer = cTickTime(a_Age); } // tolua_export /** Get the exp amount */ int GetReward(void) const { return m_Reward; } // tolua_export @@ -41,5 +41,5 @@ protected: int m_Reward; /** The number of ticks that the entity has existed / timer between collect and destroy; in msec */ - float m_Timer; + std::chrono::milliseconds m_Timer; } ; // tolua_export |