Skip to content

nbtLongSuffix

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 long tags.

  • ("l")
  • ("L")

Examples

Default

{
    "nbtLongSuffix": "L"
}

👍 Good

summon minecraft:zombie ~ ~ ~ {DeathLootTableSeed: 1L}

👎 Bad

summon minecraft:zombie ~ ~ ~ {DeathLootTableSeed: 1l}

l

{
    "nbtLongSuffix": "l"
}

👍 Good

summon minecraft:zombie ~ ~ ~ {DeathLootTableSeed: 1l}

👎 Bad

summon minecraft:zombie ~ ~ ~ {DeathLootTableSeed: 1L}

History

This rule was introduced in DHP 2.0.0.

Clone this wiki locally