|
@@ -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) {
|
|
|
- // Need More
|
|
|
- if (current_level > 0) {
|
|
|
- to_server("QQ");
|
|
|
- } else
|
|
|
- to_server("Q");
|
|
|
+ // Need More - we're not in citadel.
|
|
|
+ to_server("Q");
|
|
|
state = 9;
|
|
|
md->move_to = 1;
|
|
|
director.chain = move;
|
|
@@ -907,11 +895,8 @@ void ScriptPlanet::server_prompt(const std::string &prompt) {
|
|
|
// Ok, we're ready for the next step:
|
|
|
// checking the resources.
|
|
|
|
|
|
- // ending here for now.
|
|
|
- if (current_level > 0) {
|
|
|
- to_server("QQ");
|
|
|
- } else
|
|
|
- to_server("Q");
|
|
|
+ // ending here for now. (not in citadel)
|
|
|
+ to_server("Q");
|
|
|
deactivate();
|
|
|
return;
|
|
|
}
|