-
Bug
-
Resolution: Unresolved
-
None
-
1.16.4, 20w48a, 1.18, 1.19.2, 1.19.3 Pre-release 2, 1.21.1
-
None
-
Confirmed
-
Custom Worlds, Data Packs
The bug
The count feature placement modifier is limited to 256. This is pointless since one can achieve much higher counts by simply repeating multiple count modifiers after each other.
Invalid placed feature
{
"feature": "foo:bar",
"placement": [
{
"type": "minecraft:count",
"count": "400"
}
]
}
Valid placed feature
{
"feature": "foo:bar",
"placement": [
{
"type": "minecraft:count",
"count": "100"
},
{
"type": "minecraft:count",
"count": "4"
}
]
}