summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Pig.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-12-03 10:06:14 +0100
committerMattes D <github@xoft.cz>2014-12-03 10:06:14 +0100
commitefb5f86cfa5e7c95537bc9f82dd4d4916b2b52b2 (patch)
tree446b691e49f9f6a598107019a186eb71fe916aee /src/Mobs/Pig.cpp
parentMerge pull request #1640 from p-mcgowan/mooshroomMobSpawnerRule (diff)
parentclearing CheckBasicStyle.lua messages (diff)
downloadcuberite-efb5f86cfa5e7c95537bc9f82dd4d4916b2b52b2.tar
cuberite-efb5f86cfa5e7c95537bc9f82dd4d4916b2b52b2.tar.gz
cuberite-efb5f86cfa5e7c95537bc9f82dd4d4916b2b52b2.tar.bz2
cuberite-efb5f86cfa5e7c95537bc9f82dd4d4916b2b52b2.tar.lz
cuberite-efb5f86cfa5e7c95537bc9f82dd4d4916b2b52b2.tar.xz
cuberite-efb5f86cfa5e7c95537bc9f82dd4d4916b2b52b2.tar.zst
cuberite-efb5f86cfa5e7c95537bc9f82dd4d4916b2b52b2.zip
Diffstat (limited to 'src/Mobs/Pig.cpp')
-rw-r--r--src/Mobs/Pig.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Mobs/Pig.cpp b/src/Mobs/Pig.cpp
index 50b69e44f..1e4c35acd 100644
--- a/src/Mobs/Pig.cpp
+++ b/src/Mobs/Pig.cpp
@@ -49,17 +49,17 @@ void cPig::OnRightClicked(cPlayer & a_Player)
a_Player.Detach();
return;
}
-
+
if (m_Attachee->IsPlayer())
{
// Another player is already sitting in here, cannot attach
return;
}
-
+
// Detach whatever is sitting in this pig now:
m_Attachee->Detach();
}
-
+
// Attach the player to this pig
a_Player.AttachTo(this);
}
@@ -100,7 +100,7 @@ void cPig::Tick(float a_Dt, cChunk & a_Chunk)
bool cPig::DoTakeDamage(TakeDamageInfo & a_TDI)
-{
+{
if (!super::DoTakeDamage(a_TDI))
{
return false;