so i was attemting to remake a skyblock core that hybridpe uses but then when i finished it i had some minor errors that i fixed but this one caught me off guard. Sorry if it is pretty obvious what the answer is i have been coding all night so. I know it is about my plugin.yml but i cant seem to fix it. heres my code PHP: name: SKYBLOCKCOREauthor: DEFICATIONSmain: Core\Mainapi: [2.0.0, 3.0.0-ALPHA1, 3.0.0-ALPHA2, 3.0.0-ALPHA3, 3.0.0-ALPHA4, 3.0.0-ALPHA5, 3.0.0, 3.0.0-ALPHA6]commands: lottery: description: Its a lottey for kits an permission notespermissions: b.lottery: description: Allows players to use /lottery! children: here is the error Code: Could not load 'C:\Users\Ben\Desktop\PocketMine-MP\plugins\SkyblockCore' in folder 'C:\Users\Ben\Desktop\PocketMine-MP\plugins\': yaml_parse(): scanning error encountered during parsing: mapping values are not allowed in this context (line 11, column 14) [09:10:34] [Server thread/CRITICAL]: ErrorException: "yaml_parse(): scanning error encountered during parsing: mapping values are not allowed in this context (line 11, column 14)" (EXCEPTION) in "/src/pocketmine/plugin/PluginDescription" at line 51
The problem is in that you have an extra space in front of the `children` line. It should be aligned with the `description` property. That's why I don't like YAML. Use JSON if you hate seeing these errors all the time. If you put JSON code in a YAML file, it will still be parsed correctly because JSON is a superset of YAML In some cases, a hybrid of JSON in YAML also works.