December 2014 files

This commit is contained in:
Loki Rautio
2026-03-01 11:00:23 -06:00
parent b691c43c44
commit 8fd3ac6e37
2049 changed files with 260190 additions and 134787 deletions

View File

@@ -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()