We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b70697e commit 84f8f91Copy full SHA for 84f8f91
src/main/kotlin/com/lambda/config/settings/complex/BlockPosSetting.kt
@@ -46,7 +46,7 @@ class BlockPosSetting(defaultValue: BlockPos) : SettingCore<BlockPos>(
46
context(setting: Setting<*, BlockPos>)
47
override fun CommandBuilder.buildCommand(registry: CommandRegistryAccess) {
48
required(integer("X", -30000000, 30000000)) { x ->
49
- required(integer("Y", -64, 255)) { y ->
+ required(integer("Y", -64, 319)) { y ->
50
required(integer("Z", -30000000, 30000000)) { z ->
51
execute {
52
setting.trySetValue(BlockPos(x().value(), y().value(), z().value()))
0 commit comments