Skip to content

nbtByteSuffix

SPGoding edited this page Apr 26, 2020 · 1 revision

Rule Details

🎨 Stylistic: this is a stylistic rule used by the formatting feature.

Enforce the suffix of NBT byte tags.

  • ("b")
  • ("B")

Examples

Default

{
    "nbtByteSuffix": "b"
}

👍 Good

summon minecraft:armor_stand ~ ~ ~ {Invisible: 1b}

👎 Bad

summon minecraft:armor_stand ~ ~ ~ {Invisible: 1B}

B

{
    "nbtByteSuffix": "B"
}

👍 Good

summon minecraft:armor_stand ~ ~ ~ {Invisible: 1B}

👎 Bad

summon minecraft:armor_stand ~ ~ ~ {Invisible: 1b}

History

This rule was introduced in DHP 2.0.0.

Clone this wiki locally