Skip to content

Commit 27ff678

Browse files
committed
Allow aspect labels to render on top of aspect hatch blocks
1 parent 2d9178d commit 27ff678

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

README.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Changes from upstream:
22

33
- Prevent machines from running when aspect outputs can't take the produced aspect (fixes voiding)
4+
- Allow aspect labels to render on top of aspect hatch blocks
45

56
════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
67

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ apply plugin: 'net.minecraftforge.gradle.forge'
1111
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
1212

1313

14-
version = "1.6.2+forked"
14+
version = "1.6.3+forked"
1515
group = "fr.frinn.modularmagic" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
1616
archivesBaseName = "modularmagic"
1717

src/main/java/fr/frinn/modularmagic/common/block/BlockAspectProviderInput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public EnumBlockRenderType getRenderType(IBlockState state) {
4747

4848
@Override
4949
public BlockRenderLayer getBlockLayer() {
50-
return BlockRenderLayer.TRANSLUCENT;
50+
return BlockRenderLayer.CUTOUT;
5151
}
5252

5353
@Override

src/main/java/fr/frinn/modularmagic/common/block/BlockAspectProviderOutput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public EnumBlockRenderType getRenderType(IBlockState state) {
4444

4545
@Override
4646
public BlockRenderLayer getBlockLayer() {
47-
return BlockRenderLayer.TRANSLUCENT;
47+
return BlockRenderLayer.CUTOUT;
4848
}
4949

5050
@Override

0 commit comments

Comments
 (0)