Skip to content

Commit

Permalink
fix a whole bunch of errors in tcontent, and several constructors tha…
Browse files Browse the repository at this point in the history
…t still had ID's
  • Loading branch information
progwml6 committed Jan 5, 2014
1 parent 50a001d commit 67ccd5b
Show file tree
Hide file tree
Showing 4 changed files with 141 additions and 140 deletions.
4 changes: 2 additions & 2 deletions src/main/java/tconstruct/blocks/GlueBlock.java
Expand Up @@ -11,9 +11,9 @@

public class GlueBlock extends TConstructBlock {

public GlueBlock(int id)
public GlueBlock()
{
super(id, Material.ground, 4.0f, new String[]{"glue"});
super(Material.ground, 4.0f, new String[]{"glue"});
}

@Override
Expand Down
1 change: 1 addition & 0 deletions src/main/java/tconstruct/blocks/SearedBlock.java
Expand Up @@ -37,6 +37,7 @@ public SearedBlock(String texture)
this.texturePrefix = texture;
}


@Override
public TileEntity createTileEntity (World world, int metadata)
{
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tconstruct/blocks/TankAirBlock.java
Expand Up @@ -22,7 +22,7 @@
public class TankAirBlock extends BlockContainer
{

public TankAirBlock(int id, Material material)
public TankAirBlock(Material material)
{
super(material);
}
Expand Down

0 comments on commit 67ccd5b

Please sign in to comment.