|
@@ -855,15 +855,6 @@ void ScriptPlanet::server_prompt(const std::string &prompt) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- if (current_level > 0)
|
|
|
- to_server("NQQ");
|
|
|
- else
|
|
|
- to_server("NQ");
|
|
|
-
|
|
|
- deactivate();
|
|
|
- return;
|
|
|
- */
|
|
|
}
|
|
|
} else if (state == 9) {
|
|
|
if (at_command_prompt(prompt)) {
|
|
@@ -893,11 +884,8 @@ void ScriptPlanet::server_prompt(const std::string &prompt) {
|
|
|
} else if (state == 11) {
|
|
|
if (prompt == "Planet command (?=help) [D] ") {
|
|
|
if (total_population < support_construction) {
|
|
|
-
|
|
|
- if (current_level > 0) {
|
|
|
- to_server("QQ");
|
|
|
- } else
|
|
|
- to_server("Q");
|
|
|
+
|
|
|
+ to_server("Q");
|
|
|
state = 9;
|
|
|
md->move_to = 1;
|
|
|
director.chain = move;
|
|
@@ -907,11 +895,8 @@ void ScriptPlanet::server_prompt(const std::string &prompt) {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
- if (current_level > 0) {
|
|
|
- to_server("QQ");
|
|
|
- } else
|
|
|
- to_server("Q");
|
|
|
+
|
|
|
+ to_server("Q");
|
|
|
deactivate();
|
|
|
return;
|
|
|
}
|