Hi there, I’m working in c++ on level 18 (munchkin swarm) and I keep getting the ‘ran out of time’ response but I’m not sure what to change or add to this code. I’m cleaving the munchkins but when I hit the chest, it doesn’t open at all. Please help!!
int main() {
while(true) {
// Check the distance to the nearest enemy.
auto nearestEnemy = hero.findNearestEnemy();
float distance = hero.distanceTo(nearestEnemy);
// If it comes closer than 10 meters, cleave it!
if (distance < 10) {
hero.cleave(nearestEnemy);
}
// Else, attack the "Chest" by name.
else {
hero.attack("Chest");
hero.attack("Chest");
}
}
return 0;
}