rc3/maps/ir/cellar/01/switch.php
Stephan Messlinger 95a12398e1 ini
2021-02-15 20:14:50 +01:00

6 lines
151 B
PHP

<?php
$state = json_decode(file_get_contents("state.json"), true);
$state["switch"] = 1;
file_put_contents("state.json", json_encode($state));
exit;
?>