Skip to content
This repository was archived by the owner on Feb 8, 2019. It is now read-only.

Commit 61b06df

Browse files
committed
Merge branch 'release/0.0.1'
2 parents 845d922 + 2e5678b commit 61b06df

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ prefix: TheMix
55

66
description: "Original game of VectorNetwork"
77
website: "https://vector-network.tk"
8-
version: 1.0.0
8+
version: 0.0.1
99
authors:
1010
- InkoHX
1111
- MazaiCrafty

src/VectorNetworkProject/TheMix/TheMix.php

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111

1212
use pocketmine\plugin\PluginBase;
13+
use pocketmine\utils\TextFormat;
1314
use VectorNetworkProject\TheMix\command\PingCommand;
1415

1516
class TheMix extends PluginBase
@@ -26,7 +27,16 @@ public function onLoad()
2627
public function onEnable()
2728
{
2829
$this->registerCommands();
29-
$this->getLogger()->notice("Loaded System!!");
30+
$this->getLogger()->notice(TextFormat::GREEN . "
31+
32+
████████╗██╗ ██╗███████╗ ███╗ ███╗██╗██╗ ██╗
33+
╚══██╔══╝██║ ██║██╔════╝ ████╗ ████║██║╚██╗██╔╝
34+
██║ ███████║█████╗ ██╔████╔██║██║ ╚███╔╝
35+
██║ ██╔══██║██╔══╝ ██║╚██╔╝██║██║ ██╔██╗
36+
██║ ██║ ██║███████╗ ██║ ╚═╝ ██║██║██╔╝ ██╗
37+
╚═╝ ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝╚═╝╚═╝ ╚═╝
38+
39+
");
3040
}
3141

3242
public function onDisable()

0 commit comments

Comments
 (0)