summaryrefslogtreecommitdiff
path: root/autoschedule/ponies.php
diff options
context:
space:
mode:
Diffstat (limited to 'autoschedule/ponies.php')
-rw-r--r--autoschedule/ponies.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/autoschedule/ponies.php b/autoschedule/ponies.php
index 3346452..d16e701 100644
--- a/autoschedule/ponies.php
+++ b/autoschedule/ponies.php
@@ -4,14 +4,14 @@ global $ponies_raindrops;
global $ponies_cloudburst;
global $weekend;
-$travelling = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/travelling.json"), true);
+$travelling = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/travelling/travelling.json"), true);
function ponies(string $system): array {
global $travelling;
global $weekend;
return array_map(function ($i) use ($system, $weekend) {
- $switches = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system-switches.json"), true);
+ $switches = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/switches.json"), true);
$memberData = $i;
$i["_lastFronted"] = -1;
@@ -53,7 +53,7 @@ function ponies(string $system): array {
$fronters = array_map(function ($item) {
return $item["id"];
- }, json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system-fronters.json"), true)["members"]);
+ }, json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/$system/fronters.json"), true)["members"]);
if (in_array($id, $fronters)) {
$i["_lastFronted"] = time();