Jump to content

[SOLVED] [1.15.1] Crop texture not showing properly


kwpugh

Recommended Posts

Hello Folks,

 

I'm porting a mod from 1.14.4 to 1.15.1 and I have encountered a strange visual issue with my crops.

 

Here is the 1.15.1 code:

package com.kwpugh.gobber2.blocks;

import com.kwpugh.gobber2.lists.ItemList;

import net.minecraft.block.BlockState;
import net.minecraft.block.Blocks;
import net.minecraft.block.CropsBlock;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IItemProvider;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IBlockReader;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;

public class BlockGobberPlant extends CropsBlock
{
	
	public BlockGobberPlant(String name, Properties builder)
    {
        super(builder);
        this.setDefaultState(this.stateContainer.getBaseState().with(this.getAgeProperty(), Integer.valueOf(0)));
    }
    
    protected boolean isValidGround(BlockState state, IBlockReader worldIn, BlockPos pos)
    {
        return state.getBlock() == Blocks.FARMLAND;
    }
    
    @OnlyIn(Dist.CLIENT)
    protected IItemProvider getSeedsItem()
    {
        return ItemList.gobber2_seed;
    }

    public ItemStack getItem(IBlockReader worldIn, BlockPos pos, BlockState state)
    {
        return new ItemStack(this.getSeedsItem());
    }			
}

 

Attached are pics of what it should look like and what it actually looks like.

 

Worked fine in 1.14.4 and presented no errors when brought into the 1.15.1 environment, except the bad texture.

 

Any thoughts?

 

 

Screen Shot 2019-12-31 at 2.25.06 PM.png

Screen Shot 2019-12-31 at 2.27.58 PM.png

Link to comment
Share on other sites

  • kwpugh changed the title to [SOLVED] [1.15.1] Crop texture not showing properly

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.