Tiny cleanup
This commit is contained in:
parent
3f8deb946a
commit
1b039bce4b
2 changed files with 4 additions and 0 deletions
|
@ -332,6 +332,7 @@ public class BlockBasic extends Block
|
|||
public int getLightValue(IBlockAccess world, int x, int y, int z)
|
||||
{
|
||||
int metadata = world.getBlockMetadata(x, y, z);
|
||||
|
||||
switch(metadata)
|
||||
{
|
||||
case 2:
|
||||
|
@ -341,6 +342,7 @@ public class BlockBasic extends Block
|
|||
case 7:
|
||||
return 12;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -347,9 +347,11 @@ public class BlockTransmitter extends Block
|
|||
{
|
||||
dismantleBlock(world, x, y, z, false);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue