Solved Error in plugin.yml that I cannot figure out

Discussion in 'Plugin Development' started by Tecno_Wizard, Jan 26, 2015.

Thread Status:
Not open for further replies.
  1. Offline

    Tecno_Wizard

    Evening,
    I'm getting a strange error in my plugin yml. Does anyone know what this error means and how I can fix it? Thanks!

    ERROR:

    mapping values are not allowed here
    in "<unicode string>", line 23, column 16:
    description: Gives access to all commands a ...

    Here's the YAML

    Code:
    name: CommandsForSale
    description: 'Allows the purchasing and protecting of commands'
    version: 1.1.2
    author: 'Tecno_Wizard'
    main: me.Tecno_Wizard.CommandsForSale.core.Main
    commands:
      buycmd:
        description: Initiates the purchasing of a command
      confirm:
        description: Confirms a command purchase
      deny:
        description: Denies the purchase of a command
      cmdstobuy:
        description: Lists all purchasable commands
      boughtcmds:
        description: Lists the commands you have bought
      cmdsforsale:
        description: Holds the commands for admin-only functions
        permission: cmdsforsale.moderator
        aliases: cfs
    permissions:
      cmdsforsale.moderator
        description: Gives access to all commands and admin functions
        default: false
        children:
          cmdsforsale.buyexempt
      cmdsforsale.buyexempt
        description: Makes it so the player does not need to buy commands
        default: false
    softdepend: [Vault]
    
    NVM, found it.
     
Thread Status:
Not open for further replies.

Share This Page