diff options
author | Tiger Wang <ziwei.tiger@outlook.com> | 2021-09-30 00:17:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-30 00:17:03 +0200 |
commit | 028a5735c5f98aa10718c94de07d2f4b4c1fa6b3 (patch) | |
tree | 53d4bdd7c5c3f9abd6416b27ba893341a042ffea /src/Mobs | |
parent | Permission-based player chat message formatting (#5304) (diff) | |
download | cuberite-028a5735c5f98aa10718c94de07d2f4b4c1fa6b3.tar cuberite-028a5735c5f98aa10718c94de07d2f4b4c1fa6b3.tar.gz cuberite-028a5735c5f98aa10718c94de07d2f4b4c1fa6b3.tar.bz2 cuberite-028a5735c5f98aa10718c94de07d2f4b4c1fa6b3.tar.lz cuberite-028a5735c5f98aa10718c94de07d2f4b4c1fa6b3.tar.xz cuberite-028a5735c5f98aa10718c94de07d2f4b4c1fa6b3.tar.zst cuberite-028a5735c5f98aa10718c94de07d2f4b4c1fa6b3.zip |
Diffstat (limited to 'src/Mobs')
-rw-r--r-- | src/Mobs/Horse.cpp | 4 | ||||
-rw-r--r-- | src/Mobs/Pig.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Mobs/Horse.cpp b/src/Mobs/Horse.cpp index bb688d035..9f0507b09 100644 --- a/src/Mobs/Horse.cpp +++ b/src/Mobs/Horse.cpp @@ -152,7 +152,7 @@ void cHorse::OnRightClicked(cPlayer & a_Player) } else { - a_Player.AttachTo(this); + a_Player.AttachTo(*this); } } else if (a_Player.GetEquippedItem().IsEmpty()) @@ -177,7 +177,7 @@ void cHorse::OnRightClicked(cPlayer & a_Player) } m_TameAttemptTimes++; - a_Player.AttachTo(this); + a_Player.AttachTo(*this); } } else diff --git a/src/Mobs/Pig.cpp b/src/Mobs/Pig.cpp index 1ce6c01fb..88f3795c1 100644 --- a/src/Mobs/Pig.cpp +++ b/src/Mobs/Pig.cpp @@ -67,8 +67,8 @@ void cPig::OnRightClicked(cPlayer & a_Player) m_Attachee->Detach(); } - // Attach the player to this pig - a_Player.AttachTo(this); + // Attach the player to this pig: + a_Player.AttachTo(*this); } else if (a_Player.GetEquippedItem().m_ItemType == E_ITEM_SADDLE) { |