diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2020-04-05 14:41:14 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@outlook.com> | 2020-04-18 20:51:30 +0200 |
commit | e98f93a079c2cfea7b5478e2cb2934874e0b88e0 (patch) | |
tree | bf4726fd6c2a31da5bb6aab973354654a88f13ce /src/NetherPortalScanner.h | |
parent | Add API documentation for repeater metadata constants (diff) | |
download | cuberite-e98f93a079c2cfea7b5478e2cb2934874e0b88e0.tar cuberite-e98f93a079c2cfea7b5478e2cb2934874e0b88e0.tar.gz cuberite-e98f93a079c2cfea7b5478e2cb2934874e0b88e0.tar.bz2 cuberite-e98f93a079c2cfea7b5478e2cb2934874e0b88e0.tar.lz cuberite-e98f93a079c2cfea7b5478e2cb2934874e0b88e0.tar.xz cuberite-e98f93a079c2cfea7b5478e2cb2934874e0b88e0.tar.zst cuberite-e98f93a079c2cfea7b5478e2cb2934874e0b88e0.zip |
Diffstat (limited to 'src/NetherPortalScanner.h')
-rw-r--r-- | src/NetherPortalScanner.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/NetherPortalScanner.h b/src/NetherPortalScanner.h index f3df57c0d..3d285053a 100644 --- a/src/NetherPortalScanner.h +++ b/src/NetherPortalScanner.h @@ -15,7 +15,7 @@ class cWorld; class cNetherPortalScanner : public cChunkStay { public: - cNetherPortalScanner(cEntity * a_MovingEntity, cWorld * a_DestinationWorld, Vector3d a_DestPosition, int a_MaxY); + cNetherPortalScanner(cEntity & a_MovingEntity, cWorld * a_DestinationWorld, Vector3d a_DestPosition, int a_MaxY); virtual void OnChunkAvailable(int a_ChunkX, int a_ChunkY) override; virtual bool OnAllChunksAvailable(void) override; virtual void OnDisabled(void) override; @@ -48,8 +48,11 @@ private: /** Whether the given location is a valid location to build a portal. */ bool IsValidBuildLocation(Vector3i a_BlockPosition); - /** The entity that's being moved. */ - cEntity * m_Entity; + /** The ID of the entity that's being moved. */ + UInt32 m_EntityID; + + /** The world we're moving the entity from, used to query the entity ID. */ + cWorld & m_SourceWorld; /** The world we're moving the entity to. */ cWorld * m_World; |