diff --git a/README.md b/README.md
index 6b43f84..76144ec 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,6 @@
+# This is just a fork!
+I am not the author of this code, I am just keeping it updated for my personal use. Please have a look at the original author.
+
# Minecraft Server Status Query [Discontinued]
[](https://packagist.org/packages/funnyitselmo/minecraftserverstatus) [](https://packagist.org/packages/funnyitselmo/minecraftserverstatus) [](https://packagist.org/packages/funnyitselmo/minecraftserverstatus) [](https://packagist.org/packages/funnyitselmo/minecraftserverstatus)
@@ -8,7 +11,7 @@ Minecraft Server Status Query, written in PHP, with online players, motd, favico
### Installation
```
-composer require funnyitselmo/minecraftserverstatus
+composer require ok236449/minecraftserverstatus
```
### Tutorial
```Java
@@ -26,6 +29,16 @@ if (! $response) {
currently are " . $response['players'] . " players online
of a maximum of " . $response['max_players'] . ". The motd of the server is '" . $response['description'] . "'.
The server has a ping of " . $response['ping'] . " milliseconds.";
+
+
+ if($response['player_list'])
+ echo 'Connected players:
';
+ {
+ foreach($response['player_list'] as $player)
+ {
+ echo $player . '
';
+ }
+ }
}
```
If the server is offline MinecraftServerStatus::query returns false else it returns an array which contains the server informations.
@@ -67,6 +80,10 @@ The following table contains the available variables the response can contain. T
'player_list'
'description'