This repository has been archived on 2019-05-05. You can view files and clone it, but cannot push or open issues or pull requests.
Server-v1/minclientversion.php

13 lines
348 B
PHP
Raw Normal View History

2016-09-13 14:29:41 -06:00
<?php
/*
* Give the minimum allowed game client version. The client should check on
* startup and not continue if its version is less than the given version.
*/
require 'settings.php';
header('Content-Type: application/json');
header("Access-Control-Allow-Origin: *");
echo json_encode(["status" => "OK", "version" => MIN_CLIENT_VERSION]);