game/_incl_data/crons/battle_start.php
2022-12-30 21:03:50 +02:00

17 lines
395 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
use Insallah\Tournaments\Tournament;
require_once dirname(__DIR__) . DIRECTORY_SEPARATOR . 'autoload.php';
/**
* Проверяем и стартуем турниры (старые), групповые и хаотические поединки.
* Дописал сюда и новые турниры тоже.
*
* Запускается каждые 10 милисекунд!!!
* 5 раз в секунду с таймером в 10 милисекунд.
*/
(new FightRequest())->testCronZv();
Tournament::startAllBattles();