Skip to content

Commit

Permalink
Forgot these other changes
Browse files Browse the repository at this point in the history
  • Loading branch information
IcarussOne committed Aug 15, 2024
1 parent 12f5f57 commit 40ae5fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,8 @@ private static void initCoalescencePlatform() {
"TWOND_COALESCENCE_MATRIX",
coalescencePlatformBlueprint,
new ItemStack[] {
new ItemStack(BlocksTC.metalBlockVoid, 45),
new ItemStack(BlocksTC.stoneArcaneBrick, 24),
new ItemStack(BlocksTC.stoneArcane, 16),
new ItemStack(BlocksTC.stoneArcane, 61),
new ItemStack(BlocksTW.COALESCENCE_MATRIX_PRECURSOR)
}
));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,17 +155,17 @@ protected boolean canMakeProgress() {
protected boolean isValidPlacement() {
int i, k;

// Check main void metal blocks
// Check main arcane stone blocks
for (i = -2; i <= 2; i++) {
for (k = -3; k <= 3; k++) {
if (this.world.getBlockState(this.pos.add(i, -1, k)).getBlock() != BlocksTC.metalBlockVoid) {
if (this.world.getBlockState(this.pos.add(i, -1, k)).getBlock() != BlocksTC.stoneArcane) {
return false;
}
}
if (this.world.getBlockState(this.pos.add(-3, -1, i)).getBlock() != BlocksTC.metalBlockVoid) {
if (this.world.getBlockState(this.pos.add(-3, -1, i)).getBlock() != BlocksTC.stoneArcane) {
return false;
}
if (this.world.getBlockState(this.pos.add(3, -1, i)).getBlock() != BlocksTC.metalBlockVoid) {
if (this.world.getBlockState(this.pos.add(3, -1, i)).getBlock() != BlocksTC.stoneArcane) {
return false;
}
}
Expand Down

0 comments on commit 40ae5fd

Please sign in to comment.