diff options
Diffstat (limited to '')
-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) { |