Skip to content

Commit

Permalink
Misc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
a0a7 committed Nov 2, 2023
1 parent 7dd45f7 commit 46cffc9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
org.gradle.jvmargs=-Xmx2G

# Mod Info
maven_group = com.example
archives_base_name = modid
mod_version = 0.0.1
maven_group = com.sudolev
archives_base_name = bellsandwhistles
mod_version = 0.4.1

minecraft_version = 1.19.2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ public VoxelShape getShape(BlockState pState, BlockGetter pLevel, BlockPos pPos,
case EAST:
return Block.box(0.0, 0.0, 0.0, 3.0, 16.0, 16.0);
case UP:
return Block.box(0.0, 13.0, 0.0, 16.0, 16.0, 16.0);
case DOWN:
return Block.box(0, 0, 0, 16, 3, 16);
case DOWN:
return Block.box(0.0, 13.0, 0.0, 16.0, 16.0, 16.0);
}
}

Expand Down

0 comments on commit 46cffc9

Please sign in to comment.