chore: reorganize files for easier Docker integration
This commit is contained in:
parent
ab00e5ee08
commit
99511fe11f
1222 changed files with 0 additions and 0 deletions
game/admin
33
game/admin/cg_step6.php
Normal file
33
game/admin/cg_step6.php
Normal file
|
@ -0,0 +1,33 @@
|
|||
<?php
|
||||
|
||||
session_start();
|
||||
if (!is_array($_SESSION['lw_new_game']) || !$_SESSION['lw_new_game']['do_it_now'] || !$_SESSION['lw_new_game']['started']) {
|
||||
echo "Sorry, can't do that.";
|
||||
exit(0);
|
||||
}
|
||||
|
||||
include("config.inc");
|
||||
include("as_manager.inc");
|
||||
include("../scripts/config.inc");
|
||||
|
||||
if (!__isManagerRunning() || file_exists($config['cachedir'] . "/ticks_stopped")) {
|
||||
$op = array(
|
||||
"pc" => 60,
|
||||
"text" => "Generating configuration",
|
||||
"delay" => 1,
|
||||
"to" => "cg_step8.php"
|
||||
);
|
||||
} else {
|
||||
touch($config['cachedir'] . "/stop_ticks");
|
||||
|
||||
$op = array(
|
||||
"pc" => 55,
|
||||
"text" => "Waiting for ticks to stop",
|
||||
"delay" => 1,
|
||||
"to" => "cg_step7.php"
|
||||
);
|
||||
}
|
||||
|
||||
include('cg_operation.inc');
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue