Jump to content

Thefjong

Members
  • Posts

    2
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • URL
    http://Thefjong.com
  • Personal Text
    Forge Modder

Thefjong's Achievements

Tree Puncher

Tree Puncher (2/8)

3

Reputation

  1. private static final BlockChalkstoneBlockSlab.EnumType[] META_LOOKUP = new BlockChalkstoneBlockSlab.EnumType[values().length]; Am i wrong saying that this array is full of nulls? Try doing this in byMetadata(int meta) in the Enum Class: public static BlockChalkstoneBlockSlab.EnumType byMetadata(int meta) { if (meta < 0 || meta >= META_LOOKUP.length) { meta = 0; } return values()[meta]; }
  2. SuParticle.java -> public SuParticle()... super(world, zSpeed, zSpeed, zSpeed, zSpeed, zSpeed, zSpeed); I think this is the mistake youre looking for... The particle is getting spawned but not at the correct coordinates. Try this instead: super(xCoord, yCoord, zCoord, xSpeed, ySpeed, zSpeed);
×
×
  • Create New...

Important Information

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