diff --git a/.poggit.yml b/.poggit.yml new file mode 100644 index 0000000..effda15 --- /dev/null +++ b/.poggit.yml @@ -0,0 +1,8 @@ +--- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/TheBalkanDev/LevelChat +build-by-default: true +branches: +- master +projects: + LevelChat: + path: "" +... diff --git a/README.md b/README.md index 102d250..5ba114b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,13 @@ LevelChat ========= +## Disclaimer + +This Plugin was not made by me. +I´ve only fixed it. +I will made an 4.0.0 Branch too! + ## Description A more dynamic manifold level chat plugin. This plugin doesn't interfere with plugins that uses *$player->setFormat();* and such as the sole purpose of this plugin is to only separate the chat messages made by players per level or world. -Just load the plugin and it will do the rest! No plugin configurations needed. \ No newline at end of file +Just load the plugin and it will do the rest! No plugin configurations needed. diff --git a/plugin.yml b/plugin.yml index 25b811b..f1be951 100644 --- a/plugin.yml +++ b/plugin.yml @@ -1,8 +1,6 @@ name: LevelChat main: iJoshuaHD\LevelChat -version: 0.0.1 -api: [1.9.0] -load: STARTUP +version: 0.0.2 +api: 4.0.0 author: iJoshuaHD description: A more dynamic manifold level chat. -website: https://github.com/LevelChat \ No newline at end of file diff --git a/src/iJoshuaHD/LevelChat.php b/src/iJoshuaHD/LevelChat.php index 7f7c0dd..cf1f4d7 100644 --- a/src/iJoshuaHD/LevelChat.php +++ b/src/iJoshuaHD/LevelChat.php @@ -3,13 +3,9 @@ namespace iJoshuaHD; use pocketmine\event\Listener; - use pocketmine\event\player\PlayerChatEvent; - use pocketmine\Player; - use pocketmine\plugin\PluginBase; - use pocketmine\Server; @@ -41,4 +37,4 @@ public function onPlayerChat(PlayerChatEvent $ev){ } } -} \ No newline at end of file +}