use latest Netty and Guava

This commit is contained in:
Sen 2025-03-16 17:40:47 +01:00
parent 7f32e87ef4
commit 3af1b1f5b6
463 changed files with 611 additions and 68249 deletions

View file

@ -1,11 +1,12 @@
package game.worldgen.feature;
import com.google.common.base.Predicates;
import game.block.BlockSand;
import game.block.BlockSlab;
import game.init.Blocks;
import game.pattern.BlockStateHelper;
import game.rng.Random;
import game.util.Predicates;
import game.world.BlockPos;
import game.world.Facing;
import game.world.State;
@ -26,7 +27,7 @@ public class WorldGenDesertWells extends FeatureGenerator
position = position.down();
}
if (!field_175913_a.test(worldIn.getState(position)))
if (!field_175913_a.apply(worldIn.getState(position)))
{
return false;
}