From 6913609475762d34c6ce3f6a7b1c592f9903533e Mon Sep 17 00:00:00 2001 From: beu Date: Sun, 22 Jun 2025 22:45:23 +0200 Subject: [PATCH] add php version in the /version --- core/ManiaControl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ManiaControl.php b/core/ManiaControl.php index de12ba40..6b9a6e4d 100644 --- a/core/ManiaControl.php +++ b/core/ManiaControl.php @@ -547,7 +547,7 @@ class ManiaControl implements CallbackListener, CommandListener, TimerListener, * @param Player $player */ public function commandVersion(array $chatCallback, Player $player) { - $message = 'This server is using TrackManiaControl v' . ManiaControl::VERSION . '!'; + $message = 'This server is using TrackManiaControl v' . ManiaControl::VERSION . ' with PHP '. phpversion() .'!'; $this->getChat()->sendInformation($message, $player); }