Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • The_SlayerMC

The_SlayerMC

Members
 View Profile  See their activity
  • Content Count

    202
  • Joined

    March 23, 2014
  • Last visited

    December 11, 2020

Community Reputation

7 Neutral

About The_SlayerMC

  • Rank
    Creeper Killer
  • Birthday 08/30/1998

Converted

  • Gender
    Male
  • URL
    http://divinerpg.net
  • Location
    Australia
  • Personal Text
    Modder

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. The_SlayerMC

    [1.12.2] Adding another biome to custom dimension

    The_SlayerMC posted a topic in Modder Support

    Hi, ive almost been successful with this Here But im not sure at all why this doesnt want to spawn properly, and sometimes where the unrendered blocks are it still says the other biome even though the world generator has placed the blocks according to the biome top block Chunk Provider Biome Provider World Provider Ive gone through the vanilla code and i cant seem to find a fix
    • March 31, 2020
    • 1 reply
  2. The_SlayerMC

    [1.12.2] Slot problems

    The_SlayerMC replied to The_SlayerMC's topic in Modder Support

    Not sure why this is happening now when i try to render my slots Also code is updated on git, and when i remove my slots the player inventory still does the same thing
    • November 4, 2019
    • 3 replies
  3. The_SlayerMC

    [1.12.2] Slot problems

    The_SlayerMC posted a topic in Modder Support

    Hi ive been trying for the life of me to get this to work properly but something is really wrong, This block is like a crafting table that detects whats in the slots and replaces them if all conditions are met, however the slots are so glitchy and i dont know why Container Block Tile Entity
    • November 4, 2019
    • 3 replies
  4. The_SlayerMC

    1.14.4 sprite renderer

    The_SlayerMC replied to The_SlayerMC's topic in Modder Support

    Okay im a little lost, i have no clue how this 1.14.4 works, little more info?
    • September 30, 2019
    • 7 replies
  5. The_SlayerMC

    1.14.4 sprite renderer

    The_SlayerMC replied to The_SlayerMC's topic in Modder Support

    okay so where do i get the instances from now?
    • September 30, 2019
    • 7 replies
  6. The_SlayerMC

    1.14.4 sprite renderer

    The_SlayerMC replied to The_SlayerMC's topic in Modder Support

    Okay so how should i go about this? I havent used 1.14.4 yet
    • September 30, 2019
    • 7 replies
  7. The_SlayerMC

    1.14.4 sprite renderer

    The_SlayerMC posted a topic in Modder Support

    Hi i'm trying to register a throwable entity, looking at normal mc code:
    • September 30, 2019
    • 7 replies
  8. The_SlayerMC

    [1.12] lang isnt reading

    The_SlayerMC replied to The_SlayerMC's topic in Modder Support

    Im using (as i always have) Item.getItemFromBlock(BLOCK) for the tab https://github.com/TheSlayerMC/Journey-1.12/blob/master/main/java/net/journey/JourneyTabs.java
    • September 16, 2018
    • 12 replies
  9. The_SlayerMC

    [1.12] Generation boundrys

    The_SlayerMC posted a topic in Modder Support

    I know that you have to set the X and Z in a specific boundry to prevent trying to generate into chunks that dont exist yet upon generation but what do people generally use? I was always under the impression of ChunkX/Z * 16 + this.rand.nextInt(16) + 8 being acceptable but it clearly isn't if i'm getting log telling me that its causing problems as well as slow generation because of it Log output [19:48:45] [Server thread/WARN] [FML]: Journey Into the Light loaded a new chunk [-17, -8] in dimension 0 (overworld) while populating chunk [-18, -9], causing cascading worldgen lag. [19:48:45] [Server thread/WARN] [FML]: Please report this to the mod's issue tracker. This log can be disabled in the Forge config. int x1 = chunkX * 16, z1 = chunkZ * 16; if(rand.nextInt(9) == 0) { x = x1 + this.rand.nextInt(16) + 8; z = z1 + this.rand.nextInt(16) + 8; int yCoord = rand.nextInt(128) + 1; new WorldGenSmeltery().generate(worldObj, rand, new BlockPos(x, yCoord, z)); } Generation file @Override public boolean generate(World w, Random r, BlockPos pos) { int x = pos.getX(), y = pos.getY() - 1, z = pos.getZ(); if(locationIsValidSpawn(w, x, y, z)) return true; w.setBlockState(new BlockPos(x, y + 5, z + 1), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x, y + 5, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x, y + 5, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x, y + 5, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x, y + 5, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x, y + 5, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x, y + 5, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x, y + 5, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x, y + 5, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x, y + 5, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x, y + 5, z + 11), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 1, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 1, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 1, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 1, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 1, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 1, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 1, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 1, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 1, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 2, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 2, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 2, z + 4), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 1, y + 2, z + 5), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 1, y + 2, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 2, z + 7), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 1, y + 2, z + 8), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 1, y + 2, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 2, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 3, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 3, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 3, z + 4), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 1, y + 3, z + 5), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 1, y + 3, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 3, z + 7), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 1, y + 3, z + 8), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 1, y + 3, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 3, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 4, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 4, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 4, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 4, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 4, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 4, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 4, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 4, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 4, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 5, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 5, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 5, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 5, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 5, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 5, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 5, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 5, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 5, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 6, z + 1), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 6, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 6, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 6, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 6, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 6, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 6, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 6, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 6, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 6, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 1, y + 6, z + 11), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y, z + 3), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y, z + 4), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y, z + 5), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y, z + 6), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y, z + 7), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y, z + 8), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y, z + 9), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 1, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); //w.setBlockState(new BlockPos(x + 2, y + 1, z + 5), JourneyBlocks.eucaChest.getStateFromMeta(3)); /* TileEntityJourneyChest te = (TileEntityJourneyChest)w.getTileEntity(new BlockPos(x + 2, y + 1, z + 5)); if(te != null) { //WeightedRandomChestContent.generateChestContents(r, Lists.newArrayList(loot), te, 4); } */ w.setBlockState(new BlockPos(x + 2, y + 1, z + 6), JourneyBlocks.eucaChest.getStateFromMeta(3)); w.setBlockState(new BlockPos(x + 2, y + 1, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 1, z + 9), JourneyBlocks.eucaChest.getStateFromMeta(3)); /* TileEntityJourneyChest te2 = (TileEntityJourneyChest)w.getTileEntity(new BlockPos(x + 2, y + 1, z + 9)); if(te2 != null) { //WeightedRandomChestContent.generateChestContents(r, Lists.newArrayList(loot), te2, 12); } */ w.setBlockState(new BlockPos(x + 2, y + 1, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 2, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 2, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 3, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 3, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 3, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 4, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 4, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 4, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 5, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 5, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 5, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 5, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 5, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 5, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 5, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 5, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 5, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 6, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 6, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 6, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 6, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 6, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 6, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 6, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 6, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 6, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 7, z), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 7, z + 1), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 7, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 7, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 7, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 7, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 7, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 7, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 7, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 7, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 7, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 7, z + 11), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 2, y + 7, z + 12), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y, z + 3), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y, z + 4), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y, z + 5), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y, z + 6), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y, z + 7), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y, z + 8), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y, z + 9), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 1, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 1, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 1, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 2, z + 2), JourneyBlocks.eucaBricks.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 3, y + 2, z + 10), JourneyBlocks.eucaBricks.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 3, y + 3, z + 2), JourneyBlocks.eucaBricks.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 3, y + 3, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 3, z + 10), JourneyBlocks.eucaBricks.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 3, y + 4, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 4, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 4, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 5, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 5, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 5, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 5, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 5, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 5, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 5, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 5, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 5, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 6, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 6, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 6, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 6, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 6, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 6, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 6, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 6, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 6, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 7, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 7, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 7, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 7, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 7, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 7, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 7, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 7, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 7, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 8, z), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 8, z + 1), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 8, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 8, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 8, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 8, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 8, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 8, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 8, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 8, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 8, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 8, z + 11), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 3, y + 8, z + 12), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y, z + 3), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y, z + 4), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y, z + 5), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y, z + 6), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y, z + 7), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y, z + 8), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y, z + 9), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 1, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 1, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 2, z + 2), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 4, y + 2, z + 10), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 4, y + 3, z + 2), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 4, y + 3, z + 10), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 4, y + 4, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 4, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 5, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 5, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 5, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 5, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 5, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 5, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 5, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 5, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 5, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 6, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 6, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 6, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 6, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 6, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 6, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 6, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 6, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 6, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 7, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 7, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 7, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 7, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 7, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 7, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 7, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 7, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 7, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 8, z), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 8, z + 1), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 8, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 8, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 8, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 8, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 8, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 8, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 8, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 8, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 8, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 8, z + 11), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 4, y + 8, z + 12), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y, z + 3), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y, z + 4), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y, z + 5), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y, z + 6), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y, z + 7), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y, z + 8), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y, z + 9), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 1, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 1, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 2, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 2, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 3, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 3, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 4, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 4, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 4, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 4, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 4, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 4, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 4, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 4, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 4, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 5, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 5, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 5, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 5, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 5, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 5, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 5, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 5, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 5, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 6, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 6, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 6, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 6, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 6, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 6, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 6, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 6, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 6, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 7, z), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 7, z + 1), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 7, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 7, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 7, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 7, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 7, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 7, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 7, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 7, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 7, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 7, z + 11), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 5, y + 7, z + 12), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y, z + 3), JourneyBlocks.goldEucaPlank.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 1, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 1, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 1, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 1, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 1, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 1, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 1, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 1, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 2, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 2, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 2, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 2, z + 6), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 6, y + 2, z + 7), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 6, y + 2, z + 8), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 6, y + 2, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 2, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 3, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 3, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 3, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 3, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 3, z + 6), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 6, y + 3, z + 7), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 6, y + 3, z + 8), Blocks.STAINED_GLASS_PANE.getStateFromMeta(1)); w.setBlockState(new BlockPos(x + 6, y + 3, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 3, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 4, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 4, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 4, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 4, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 4, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 4, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 4, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 4, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 4, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 5, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 5, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 5, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 5, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 5, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 5, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 5, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 5, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 5, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 6, z + 1), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 6, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 6, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 6, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 6, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 6, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 6, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 6, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 6, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 6, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 6, y + 6, z + 11), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 7, y + 5, z + 1), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 7, y + 5, z + 2), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 7, y + 5, z + 3), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 7, y + 5, z + 4), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 7, y + 5, z + 5), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 7, y + 5, z + 6), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 7, y + 5, z + 7), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 7, y + 5, z + 8), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 7, y + 5, z + 9), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 7, y + 5, z + 10), JourneyBlocks.eucaBricks.getDefaultState()); w.setBlockState(new BlockPos(x + 7, y + 5, z + 11), JourneyBlocks.eucaBricks.getDefaultState()); if(!w.isRemote) { EntityAlloyMender smith = new EntityAlloyMender(w); smith.setLocationAndAngles(x + 4, y + 2, z + 4, 0.0F, 0.0F); w.spawnEntity(smith); } return false; }
    • September 16, 2018
    • 2 replies
  10. The_SlayerMC

    [1.12] lang isnt reading

    The_SlayerMC replied to The_SlayerMC's topic in Modder Support

    Next question, i cant use a block as a custom tab icon, items no worries but blocks dont register as a tab icon but show up fine in the tab?
    • September 16, 2018
    • 12 replies
  11. The_SlayerMC

    [1.12] lang isnt reading

    The_SlayerMC replied to The_SlayerMC's topic in Modder Support

    Dont ask me how, but i just removed the item and block repetitive registry and now the lang file is working. And also to answer I didnt register the blocks and items, that part wasnt my code it was the other dev so couldnt even begin to tell you why haha
    • September 16, 2018
    • 12 replies
  12. The_SlayerMC

    [1.12] lang isnt reading

    The_SlayerMC replied to The_SlayerMC's topic in Modder Support

    Well what would be the cause of something like that
    • September 16, 2018
    • 12 replies
  13. The_SlayerMC

    [1.12] lang isnt reading

    The_SlayerMC replied to The_SlayerMC's topic in Modder Support

    latest.zip
    • September 16, 2018
    • 12 replies
  14. The_SlayerMC

    [1.12] lang isnt reading

    The_SlayerMC replied to The_SlayerMC's topic in Modder Support

    https://github.com/TheSlayerMC/Journey-1.12/blob/master/main/resources/pack.mcmeta still hasnt fixed the problem
    • September 16, 2018
    • 12 replies
  15. The_SlayerMC

    [1.12] lang isnt reading

    The_SlayerMC posted a topic in Modder Support

    Is there any reason that a mod wont read a lang file? path is correct and file is formatted properly https://github.com/TheSlayerMC/Journey-1.12/blob/master/main/resources/assets/journey/lang/en_us.lang it comes up ingame like a lang file doesn't exist and no items or anything are named which doesnt make any sense at all, so i dare say it will be something so simple to fix because it shouldnt be this hard. I just cant figure it out
    • September 16, 2018
    • 12 replies
  • All Activity
  • Home
  • The_SlayerMC
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community