This commit is contained in:
embeddedt 2023-05-01 21:28:59 -04:00
parent e830fd9bef
commit 3f2a8dbb61
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -11,6 +11,7 @@ import net.minecraft.client.resources.model.BlockModelRotation;
import net.minecraft.client.resources.model.ModelBakery;
import net.minecraft.core.Direction;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.util.RandomSource;
import net.minecraft.world.level.block.state.BlockState;
import org.apache.commons.lang3.tuple.Triple;
import org.jetbrains.annotations.NotNull;
@ -27,7 +28,7 @@ public class DynamicBakedModelProvider implements Map<ResourceLocation, BakedMod
private BakedModel missingModel;
private static final BakedModel SENTINEL = new BakedModel() {
@Override
public List<BakedQuad> getQuads(@Nullable BlockState state, @Nullable Direction side, Random rand) {
public List<BakedQuad> getQuads(@Nullable BlockState state, @Nullable Direction direction, RandomSource random) {
return null;
}