Skip to content

Commit

Permalink
refactor: change wrong BlockPos name
Browse files Browse the repository at this point in the history
  • Loading branch information
starforcraft committed May 28, 2024
1 parent 73c258f commit c4c8223
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ static void preparePlot(final GameTestHelper helper,
ZERO.above().above().north(),
RSBLOCKS.getFluidStorageBlock(FluidStorageType.Variant.SIXTY_FOUR_B)
);
final BlockPos constructorPos = ZERO.above().above().above();
helper.setBlock(constructorPos, RSBLOCKS.getDestructor().getDefault().rotated(direction));
final BlockPos destructorPos = ZERO.above().above().above();
helper.setBlock(destructorPos, RSBLOCKS.getDestructor().getDefault().rotated(direction));
consumer.accept(
requireBlockEntity(helper, constructorPos, DestructorBlockEntity.class),
constructorPos,
requireBlockEntity(helper, destructorPos, DestructorBlockEntity.class),
destructorPos,
helper.startSequence()
);
}
Expand Down

0 comments on commit c4c8223

Please sign in to comment.