Skip to content

Commit

Permalink
Port to 1.9.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vexatos committed May 21, 2016
1 parent eeab333 commit ac204cb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@ buildscript {
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
}
}
apply plugin: 'net.minecraftforge.gradle.forge'

version = "1.9-1.6"
version = "1.9.4-1.7"
group= "com.reddit.user.koppeh.flamingo" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "Flamingo"

minecraft {
version = '1.9-12.16.1.1887'
version = '1.9.4-12.17.0.1909-1.9.4'
runDir = "run"

// the mappings can be changed at any time, and must be in the following format.
// snapshot_YYYYMMDD snapshot are built nightly.
// stable_# stables are built at the discretion of the MCP team.
// Use non-default mappings at your own risk. they may not allways work.
// simply re-run your setup task after changing the mappings to update your workspace.
mappings = 'snapshot_20160428'
mappings = 'snapshot_20160519'
}

processResources
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,20 @@ public BlockFlamingo() {
setCreativeTab(CreativeTabs.DECORATIONS);
}

@Override
@Deprecated
public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) {
return FLAMINGO_AABB;
}

@Override
@Deprecated
public boolean isOpaqueCube(IBlockState state) {
return false;
}

@Override
@Deprecated
public boolean isFullCube(IBlockState state) {
return false;
}
Expand All @@ -63,6 +67,7 @@ public int getMetaFromState(IBlockState state) {
}

@Override
@Deprecated
public IBlockState getStateFromMeta(int meta) {
return getDefaultState().withProperty(ROTATION, meta);
}
Expand Down

0 comments on commit ac204cb

Please sign in to comment.