Skip to content

Commit 84f8f91

Browse files
authored
update BlockPosSetting y level to 319 (#268)
1 parent b70697e commit 84f8f91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/lambda/config/settings/complex/BlockPosSetting.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class BlockPosSetting(defaultValue: BlockPos) : SettingCore<BlockPos>(
4646
context(setting: Setting<*, BlockPos>)
4747
override fun CommandBuilder.buildCommand(registry: CommandRegistryAccess) {
4848
required(integer("X", -30000000, 30000000)) { x ->
49-
required(integer("Y", -64, 255)) { y ->
49+
required(integer("Y", -64, 319)) { y ->
5050
required(integer("Z", -30000000, 30000000)) { z ->
5151
execute {
5252
setting.trySetValue(BlockPos(x().value(), y().value(), z().value()))

0 commit comments

Comments
 (0)