Skip to content

Commit

Permalink
prep for build
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadiboo committed Dec 5, 2018
1 parent d224c86 commit bd4d1ed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'net.minecraftforge.gradle.forge'
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.


version = "1.12.2-0.0.0-alpha8"
version = "1.12.2-0.0.0-alpha9"
group = "io.github.cadiboo.nocubes" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "NoCubes"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public static final class Version {
* It is changed when we add new features that are not quite done yet.<br>
* It is reset when we update to a new Minecraft version, our Major Mod Version increments, our Minor Mod Version increments or our Patch Version increments.
*/
public static final int PRE_RELEASE_VERSION = 8;
public static final int PRE_RELEASE_VERSION = 9;

/**
* This is our Mod's Suffix including our PreRelease Version.<br>
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/io/github/cadiboo/nocubes/util/ModUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ public static BakedQuad getQuad(final IBlockState state, final BlockPos pos, fin

public static TextureAtlasSprite getSprite(final IBlockState state, final BlockPos pos, final BlockRendererDispatcher blockRendererDispatcher) {

if (true) {
return Minecraft.getMinecraft().getTextureMapBlocks().getAtlasSprite("minecraft:blocks/sand");
}
// if (true) {
// return Minecraft.getMinecraft().getTextureMapBlocks().getAtlasSprite("minecraft:blocks/sand");
// }

try {
return getQuad(state, pos, blockRendererDispatcher).getSprite();
Expand Down

0 comments on commit bd4d1ed

Please sign in to comment.