Fun fact: I am not qualified for this

This commit is contained in:
Ice_Arrow 2023-11-18 21:18:49 -08:00 committed by GitHub
parent a85f8455f7
commit c528d96e7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -212,7 +212,10 @@ public class TileEntityReactorResearch extends TileEntityMachineBase implements
Block b = worldObj.getBlock(x, y, z);
if(b == ModBlocks.block_lead || b == ModBlocks.block_desh || b == ModBlocks.reactor_research || b == ModBlocks.machine_reactor_breeding || b == Blocks.water)
if((b == Blocks.water || b == Blocks.flowing_water) && worldObj.getBlockMetadata(x, y, z) == 0)
return true;
if(b == ModBlocks.block_lead || b == ModBlocks.block_desh || b == ModBlocks.reactor_research || b == ModBlocks.machine_reactor_breeding)
return true;
if(b.getExplosionResistance(null) >= 100)