scoden Posted January 28, 2024 Posted January 28, 2024 (edited) I am trying to spawn fluid, but Intellij says " Cannot resolve method 'setBlock(BlockPos, RegistryObject<LiquidBlock>)' " package net.svisvi.jigsawpp.effect; import net.minecraft.core.BlockPos; import net.minecraft.world.effect.MobEffect; import net.minecraft.world.effect.MobEffectCategory; import net.minecraft.world.entity.LivingEntity; import net.minecraft.world.level.Level; import static net.svisvi.jigsawpp.init.JigsawPpModBlocks.PONOS_WATER_BLOCK; public class purgenEffect extends MobEffect { public purgenEffect(MobEffectCategory mobEffectCategory, int color) { super(mobEffectCategory, color); } public void applyEffectTick(LivingEntity pLivingEntity, Level worldin, BlockPos pos) { if (pLivingEntity.level().isClientSide()) { worldin.setBlock(pos, PONOS_WATER_BLOCK); } } } Edited January 29, 2024 by scoden Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.