|
@@ -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) {
|