Made all block fields final
This commit is contained in:
parent
f244f2c053
commit
537ccc092c
25 changed files with 242 additions and 254 deletions
|
@ -42,7 +42,7 @@ public class ItemSigilBloodLight extends ItemSigilBase
|
|||
|
||||
if (world.isAirBlock(blockPos))
|
||||
{
|
||||
world.setBlockState(blockPos, ModBlocks.bloodLight.getDefaultState());
|
||||
world.setBlockState(blockPos, ModBlocks.BLOOD_LIGHT.getDefaultState());
|
||||
if (!world.isRemote)
|
||||
NetworkHelper.syphonAndDamage(NetworkHelper.getSoulNetwork(player), player, getLpUsed());
|
||||
resetCooldown(stack);
|
||||
|
|
|
@ -36,7 +36,7 @@ public class ItemSigilPhantomBridge extends ItemSigilToggleableBase
|
|||
BlockPos blockPos = new BlockPos(ix, posY + verticalOffset, iz);
|
||||
|
||||
if (world.isAirBlock(blockPos))
|
||||
world.setBlockState(blockPos, ModBlocks.phantomBlock.getDefaultState());
|
||||
world.setBlockState(blockPos, ModBlocks.PHANTOM_BLOCK.getDefaultState());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue