aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/SwellGoal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/SwellGoal.cpp')
-rw-r--r--Minecraft.World/SwellGoal.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Minecraft.World/SwellGoal.cpp b/Minecraft.World/SwellGoal.cpp
index 9065ba16..040d09c2 100644
--- a/Minecraft.World/SwellGoal.cpp
+++ b/Minecraft.World/SwellGoal.cpp
@@ -7,7 +7,7 @@
SwellGoal::SwellGoal(Creeper *creeper)
{
- target = weak_ptr<Mob>();
+ target = weak_ptr<LivingEntity>();
this->creeper = creeper;
setRequiredControlFlags(Control::MoveControlFlag);
@@ -15,19 +15,19 @@ SwellGoal::SwellGoal(Creeper *creeper)
bool SwellGoal::canUse()
{
- shared_ptr<Mob> target = creeper->getTarget();
+ shared_ptr<LivingEntity> target = creeper->getTarget();
return creeper->getSwellDir() > 0 || (target != NULL && (creeper->distanceToSqr(target) < 3 * 3));
}
void SwellGoal::start()
{
creeper->getNavigation()->stop();
- target = weak_ptr<Mob>(creeper->getTarget());
+ target = weak_ptr<LivingEntity>(creeper->getTarget());
}
void SwellGoal::stop()
{
- target = weak_ptr<Mob>();
+ target = weak_ptr<LivingEntity>();
}
void SwellGoal::tick()