From 9331e22a544ae2b1e725055378eac26d35ddb6d9 Mon Sep 17 00:00:00 2001 From: beu Date: Sat, 7 Sep 2024 20:37:28 +0200 Subject: [PATCH] fix error with the setServerOptions method --- libs/Maniaplanet/DedicatedServer/Connection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/Maniaplanet/DedicatedServer/Connection.php b/libs/Maniaplanet/DedicatedServer/Connection.php index 0dcc3ca3..4e6cc077 100644 --- a/libs/Maniaplanet/DedicatedServer/Connection.php +++ b/libs/Maniaplanet/DedicatedServer/Connection.php @@ -2154,7 +2154,7 @@ class Connection * @return bool * @throws InvalidArgumentException */ - function setServerOptions(\Structures\ServerOptions $options, $multicall = false) + function setServerOptions(Structures\ServerOptions $options, $multicall = false) { if ($options->isValid() === false) { throw new InvalidArgumentException('options = ' . print_r($options, true));