ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/base/BlockFluidFlowing.java

33 lines
1 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("BlockFluidFlowing.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.blocks.base;
2015-04-26 20:07:57 +02:00
2021-10-21 19:33:19 +02:00
/*
2019-05-02 09:10:29 +02:00
public class BlockFluidFlowing extends BlockFluidClassic implements ItemBlockBase.ICustomRarity {
2015-04-26 20:07:57 +02:00
public BlockFluidFlowing(Fluid fluid, Material material) {
2015-05-20 22:39:43 +02:00
super(fluid, material);
this.displacements.put(this, false);
2015-12-19 10:30:39 +01:00
}
2015-04-26 20:07:57 +02:00
@Override
2019-05-02 09:10:29 +02:00
public boolean canDisplace(IBlockAccess world, BlockPos pos) {
2016-07-04 20:15:41 +02:00
return !world.getBlockState(pos).getMaterial().isLiquid() && super.canDisplace(world, pos);
2015-04-26 20:07:57 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public boolean displaceIfPossible(World world, BlockPos pos) {
2016-07-04 20:15:41 +02:00
return !world.getBlockState(pos).getMaterial().isLiquid() && super.displaceIfPossible(world, pos);
2015-04-26 20:07:57 +02:00
}
}
2021-10-21 19:33:19 +02:00
*/