Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unbreak campaign prizes, vault, fah #550

Merged
merged 21 commits into from Feb 18, 2019
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion common/cron/minute.php
Expand Up @@ -5,7 +5,6 @@
require_once HTTP_FNS . '/rand_crypt/PseudoRandom.php';
require_once QUERIES_DIR . '/artifact_location.php';
require_once QUERIES_DIR . '/bans.php';
require_once QUERIES_DIR . '/campaigns.php';
require_once QUERIES_DIR . '/gp.php';
require_once QUERIES_DIR . '/messages.php';
require_once QUERIES_DIR . '/servers.php';
Expand Down
1 change: 0 additions & 1 deletion functions/cron/cron_fns.php
Expand Up @@ -13,7 +13,6 @@ function run_update_cycle($pdo)
$send->artifact = artifact_location_select($pdo);
$send->recent_pms = get_recent_pms($pdo);
$send->recent_bans = bans_select_recent($pdo);
$send->campaign = levels_select_campaign($pdo);
$send_str = json_encode($send);

// send the data
Expand Down
1 change: 0 additions & 1 deletion functions/multi_fns/process_fns.php
Expand Up @@ -90,7 +90,6 @@ function process_update_cycle($socket, $data)
place_artifact($obj->artifact);
pm_notify($obj->recent_pms);
apply_bans($obj->recent_bans);
set_campaign($obj->campaign);

$ret = new stdClass();
$ret->plays = drain_plays();
Expand Down