fix: display message about missing camp points

Related to: https://github.com/yapb/yapb/issues/306
This commit is contained in:
Владислав Сухов 2022-02-18 17:30:29 +06:00 committed by GitHub
commit e59ed4d48f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -844,7 +844,11 @@ int BotControl::cmdNodeIterateCamp () {
m_campIterator.push (i);
}
}
msg ("Ready for iteration. Type 'next' to go to first camp node.");
if (!m_campIterator.empty ()) {
msg ("Ready for iteration. Type 'next' to go to first camp node.");
return BotCommandResult::Handled;
}
msg ("Unable to begin iteration, camp points is not set.");
}
return BotCommandResult::Handled;
}