Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
514 B · 22 lines
C++
at master
12345678910111213141516171819202122#include "stdafx.h"#include "net.minecraft.world.entity.h"#include "net.minecraft.world.entity.ai.control.h"#include "net.minecraft.world.entity.ai.navigation.h"#include "FloatGoal.h"
FloatGoal::FloatGoal(Mob *mob){ this->mob = mob; setRequiredControlFlags(Control::JumpControlFlag); mob->getNavigation()->setCanFloat(true);}
bool FloatGoal::canUse(){ return (mob->isInWater() || mob->isInLava());}
void FloatGoal::tick(){ if (mob->getRandom()->nextFloat() < 0.8f) mob->getJumpControl()->jump();}