Browse Source

Fix corp 'I' parse. Show why we stopped.

Steve Thielemann 3 years ago
parent
commit
80ea98839b
2 changed files with 9 additions and 1 deletions
  1. 7 0
      director.cpp
  2. 2 1
      scripts.cpp

+ 7 - 0
director.cpp

@@ -1207,6 +1207,13 @@ void Director::SL_infoline(const std::string &line) {
     galaxy.meta["info"][key] = value;
     BUGZ_LOG(fatal) << "Info: " << key << " : " << value;
   }
+  // [Corp           # 1, Galaxy Stomping, Inc.]
+  if (startswith(line, "Corp  ")) {
+    pos = line.find(", ");
+    if (pos != line.npos) {
+      galaxy.meta["info"]["Corp"] = line.substr(pos + 2);
+    }
+  }
 }
 
 void Director::SL_computer_portline(const std::string &line) {

+ 2 - 1
scripts.cpp

@@ -266,7 +266,8 @@ void ScriptVoyager::move_notify(void) {
     next();
     return;
   } else {
-    to_client("No safe moves.\n\r");
+    std::string message = "No safe moves. " + md->why_failed + "\n\r";
+    to_client(message);
     deactivate();
   }
 }