1

集計が正しくない .yml ファイルがあります。これはどのように見えるかです:

    explosivearrow:
        spell-class: ".instant.ProjectileSpell"
        name: explosivearrow
        spell-icon: arrow
        description: Cause an explosion where an arrow lands
        cast-item: blaze_rod
        cooldown: 1
        projectile: arrow
        velocity: 0
        require-hit-entity: false
        cancel-damage: true
        remove-projectile: true
        max-distance: 30
        spells: [explode]
        cost:
            - mana 30
        str-cost: 30 mana
        str-cast-self: Shebang! Take that one!

これは、どのように見える必要があるかです:

explosivearrow:
    spell-class: ".instant.ProjectileSpell"
    name: explosivearrow
    spell-icon: arrow
    description: Cause an explosion where an arrow lands
    cast-item: blaze_rod
    cooldown: 1
    projectile: arrow
    velocity: 0
    require-hit-entity: false
    cancel-damage: true
    remove-projectile: true
    max-distance: 30
    spells: [explode]
    cost:
        - mana 30
    str-cost: 30 mana
    str-cast-self: Shebang! Take that one!

したがって、基本的には、ファイルの frist 列を削除する必要があります。手動で行うことはできますが、1519行から4スペースをバックスペースしたくありません...誰か助けてくれますか? 初めての質問なので、間違っていたらすみません。

4

2 に答える 2