I get this error when starting my server, I do not know why I get it, but could someone tell me why I'm getting this error? Code: [07:42:13] [Server thread/CRITICAL]: Could not load plugin 'Clans' ps: I'm not sharing my code because I do not know which part I should share, it has never happened to me before. I tried to look for what could be causing this error in the api itself, and found nothing.
Description: Code: name: Clans version: 1.0 api: [2.0.0, 3.0.0, 3.0.0-ALPHA5] main: DanielYTK\Clans\Main author: DanielYTK
Code: [21:07:43] [Server thread/ERROR]: Could not load 'C:\Users\DanielYTK\Desktop\Backup\PocketMine-MP\plugins\Clas' in folder 'C:\Users\DanielYTK\Desktop\Backup\PocketMine-MP\plugins\': Argument 1 passed to pocketmine\plugin\PluginDescription::loadMap() must be of the type array, boolean given, called in phar://C:/Users/DanielYTK/Desktop/Backup/PocketMine-MP/PocketMine-MP.phar/src/pocketmine/plugin/PluginDescription.php on line 53 [21:07:43] [Server thread/CRITICAL]: TypeError: "Argument 1 passed to pocketmine\plugin\PluginDescription::loadMap() must be of the type array, boolean given, called in phar://C:/Users/DanielYTK/Desktop/Backup/PocketMine-MP/PocketMine-MP.phar/src/pocketmine/plugin/PluginDescription.php on line 53" (EXCEPTION) in "/src/pocketmine/plugin/PluginDescription" at line 61
I don't know if this is the only problem you have, but you must now use a full version string such as 1.0.0 for your plugin version (even if it is in quotes!) or it will be interpreted as a float, or int if you just use '1' which then throws a type error because version must be a string. Blame yaml and strict typing... This had me confused for a while today.
I really do not know what can be causing this, I've never had this error before, I've tried everything I know to try to solve it. Unsuccessfully.
Have you checked the yaml is not corrupted on codebeautify.org? If so, did you actually try what I suggested and correct your version string to 1.0.0? Was the error message the same afterwards? Update, dktapps has just committed a workaround for the yaml types problem.