diff --git a/.poggit.yml b/.poggit.yml index 081e23e..d003b6d 100644 --- a/.poggit.yml +++ b/.poggit.yml @@ -4,4 +4,5 @@ branches: projects: PlayerInfo: path: "" + icon: icon.png ... diff --git a/Playerinfo logo.png b/Playerinfo logo.png new file mode 100644 index 0000000..1fcd185 Binary files /dev/null and b/Playerinfo logo.png differ diff --git a/plugin.yml b/plugin.yml index 01b2992..75cfff4 100644 --- a/plugin.yml +++ b/plugin.yml @@ -1,7 +1,7 @@ name: PlayerInfo -version: 1.2.1 +version: 1.2.3 author: Matthww -api: [3.0.0-ALPHA1, 3.0.0-ALPHA2, 3.0.0-ALPHA3, 3.0.0-ALPHA4, 3.0.0-ALPHA5] +api: [3.0.0-ALPHA1, 3.0.0-ALPHA2, 3.0.0-ALPHA3, 3.0.0-ALPHA4, 3.0.0-ALPHA5, 3.0.0-ALPHA6] description: Shows info about a certain player! main: Matthww\PlayerInfo\PlayerInfo diff --git a/src/Matthww/PlayerInfo/PlayerInfo.php b/src/Matthww/PlayerInfo/PlayerInfo.php index 78d220a..ed31ef3 100644 --- a/src/Matthww/PlayerInfo/PlayerInfo.php +++ b/src/Matthww/PlayerInfo/PlayerInfo.php @@ -40,7 +40,7 @@ class PlayerInfo extends PluginBase implements Listener { public function onCommand(CommandSender $sender, Command $command, $label, array $args) { if (strtolower($command->getName()) == "playerinfo" or strtolower($command->getName()) == "pinfo") { - $os = ["Unknown", "Android", "iOS", "OSX", "FireOS", "GearVR", "HoloLens", "Windows 10", "Windows", "Dedicated"]; + $os = ["Unknown", "Android", "iOS", "macOS", "FireOS", "GearVR", "HoloLens", "Windows 10", "Windows", "Dedicated"]; $UI = ["Classic UI", "Pocket UI"]; $Controls = ["Unknown", "Mouse", "Touch", "Controller"]; $GUI = [-2 => "Minimum", -1 => "Medium", 0 => "Maximum"];