Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MBatt1 committed Apr 27, 2024
1 parent b813548 commit 917a1f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ val satinVersion: String by properties
val clothConfigVersion: String by properties

plugins {
id("fabric-loom") version "0.12-SNAPSHOT"
id("fabric-loom") version "1.0-SNAPSHOT"
id("com.modrinth.minotaur") version "1.2.1"
id("de.guntram.mcmod.crowdin-translate") version "1.4+1.19"
`maven-publish`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ public boolean tryCreate(World world, BlockPos pos, boolean force) {
FloatingBlockEntity upper = new FloatingBlockEntity(world, pos.up(), upperState, true);
FloatingBlockEntity lower = new FloatingBlockEntity(world, pos, state, true);
upper.dropItem = false;
world.setBlockState(pos, Blocks.AIR.getDefaultState());
world.setBlockState(pos.up(), Blocks.AIR.getDefaultState());
BlockLikeSet structure = new BlockLikeSet(lower, upper, Vec3i.ZERO.up());
structure.spawn(world);
return true;
Expand Down

0 comments on commit 917a1f6

Please sign in to comment.