Moved lines
don't know if I did well
This commit is contained in:
parent
90c39c55a9
commit
2c187e53b7
@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
||||||
|
|
||||||
#include "Horse.h"
|
#include "Horse.h"
|
||||||
@ -89,22 +90,6 @@ void cHorse::Tick(float a_Dt, cChunk & a_Chunk)
|
|||||||
|
|
||||||
void cHorse::OnRightClicked(cPlayer & a_Player)
|
void cHorse::OnRightClicked(cPlayer & a_Player)
|
||||||
{
|
{
|
||||||
if (m_Attachee != NULL)
|
|
||||||
{
|
|
||||||
if (m_Attachee->GetUniqueID() == a_Player.GetUniqueID())
|
|
||||||
{
|
|
||||||
a_Player.Detach();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (m_Attachee->IsPlayer())
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
m_Attachee->Detach();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((a_Player.GetEquippedItem().m_ItemType == E_ITEM_SADDLE) && (!m_bIsSaddled) && (m_bIsTame))
|
if ((a_Player.GetEquippedItem().m_ItemType == E_ITEM_SADDLE) && (!m_bIsSaddled) && (m_bIsTame))
|
||||||
{
|
{
|
||||||
if (!a_Player.IsGameModeCreative())
|
if (!a_Player.IsGameModeCreative())
|
||||||
@ -123,6 +108,22 @@ void cHorse::OnRightClicked(cPlayer & a_Player)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if (m_Attachee != NULL)
|
||||||
|
{
|
||||||
|
if (m_Attachee->GetUniqueID() == a_Player.GetUniqueID())
|
||||||
|
{
|
||||||
|
a_Player.Detach();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (m_Attachee->IsPlayer())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_Attachee->Detach();
|
||||||
|
}
|
||||||
|
|
||||||
m_TameAttemptTimes++;
|
m_TameAttemptTimes++;
|
||||||
a_Player.AttachTo(this);
|
a_Player.AttachTo(this);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user