|
@@ -395,13 +395,15 @@ void ScriptExplore::move_notify() {
|
|
|
if (unknown_warps.size() != 0) {
|
|
|
BUGZ_LOG(warning) << "Seeking previous unexplored (Unsafe Dest.)";
|
|
|
state = 4;
|
|
|
- next();
|
|
|
target = unknown_warps.top();
|
|
|
unknown_warps.pop();
|
|
|
std::string message = "UNSAFE DESTINATION";
|
|
|
std::string indenter = " ";
|
|
|
ANSIColor alert(COLOR::WHITE, COLOR::RED, ATTR::BOLD);
|
|
|
to_client(indenter + alert() + message + reset() + "\n\r");
|
|
|
+ BUGZ_LOG(warning) << "Target = " << target;
|
|
|
+ next();
|
|
|
+ //deactivate();
|
|
|
} else {
|
|
|
std::string message = "Move failed: " + md->why_failed + "\n\r";
|
|
|
// to_client("No safe moves.\n\r");
|