Jump to content

JaredBGreat

Members
  • Posts

    129
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by JaredBGreat

  1. Are you sure you have the right directory / folder and everything? The texture name would be: :modid/ + name e.g. for something mymod with a block called baddirt setBlockTextureName(":mymod/baddirt"); while if you used a subfolder it would be: :modid/ + subdirectory + name e.g. fro something with a graphic at src/main/resources/assets/mf1inmf2/textures/blocks/slate0.png setBlockTextureName(":mf1inmf2/basic/slate0"); Note that I've yet to make stairs, so I don't know about them specifically, so if its a stairs thing that's going wrong I probably can't help -- so far I've just made basic blocks and meta-block varieties, since most of my experience in modding is world gen.
  2. Yes, its right up there, it is registering sub-types. I think Draco18s may have seen what I'm doing wrong. But I can't tell because it crashes now -- it looks like Forge is trying to claim a vanilla ID when I call GameRegistry.registerItem -- which now has me more confused, why would it do that? EDIT: I thought the crash might be caused by the items being static and defined where declared, so that init hasn't actually run yet. But moving the definition around only changes the ID it tries to steal, it doesn't fix the problem. EDIT2: Reading further up the stacktrace reveals that the crash is caused by trying to register in the game registry from inside the contructor (I think). Apparently I need to change the registration to include the class of the ItemBlock to make it work, but I can't for the life of me find where AP is registering the blocks (though they clearly seem to be registered) -- I'll just have to ask him, maybe he doesn't even want something like this. Thanks for the help.
  3. Well, that was a silly mistake on my part. Changed that but now I get a crash: Caused by: java.lang.IllegalStateException: Can't free registry slot 198 occupied by net.minecraft.item.ItemBlock@1fadf38 at cpw.mods.fml.common.registry.GameData.freeSlot(GameData.java:926) at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:832) at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:802) at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143) at minefantasy.mf2.block.itemblocks.ItemClayWall.<init>(ItemClayWall.java:22) ... 49 more ...but I'm not trying to register an ID of 198, or any other specific ID. Shouldn't "GameRegistry.registerItem(this, block.getUnlocalizedName(), "minefantasy2");" (the line reference at the bottom) be finding an appropriate ID?
  4. I've was invited to help out with Minefantasy 2 and started trying to add smaller pieces (since I don't know all AnonymousProduction plan, or apparently talent, or have much experience with things beyond placing existing blocks in the world). I was trying to add extra version of a decorative block by switching to a meta data version. But, even though everything looks fine in creative tabs, and the block could be crafted correctly, when placed it always places as metadata 0. I've read tutorials, and a book, but they leave the impression I've done everything right. I've also seen this thread on a similar problem: http://www.minecraftforge.net/forum/index.php?topic=29676.0 ...but it didn't seem to help -- I tried changes ItemBlock to ItemBlockWithMetadata and no change (also looked and found vanilla wool does really use that either, but inherits from ItemBlock). I've googled and search but so far nothing helpful. The code I have is this: package minefantasy.mf2.block.basic; import java.util.List; import java.util.Random; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.texture.IIconRegister; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.util.IIcon; import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; /** * This is suppose to be a generic class for creating blocks with subtypes, but its not working; * as items they are fine, but placing the block in the world does not work. Leaving this for * not, but its not used. * * @author BlackJar72 * */ public class BasicMetadataBlockMF extends BasicBlockMF { private final String NAME; private final int NUMBER; @SideOnly(Side.CLIENT) private IIcon[] icons; public BasicMetadataBlockMF(String name, Material material, Class itemBlock, int number) { super(name, material, null); NUMBER = number; NAME = name; } public BasicMetadataBlockMF(String name, Material material, Class itemBlock, int number, Object drop) { super(material); NUMBER = number; NAME = name; GameRegistry.registerBlock(this, itemBlock, NAME); setBlockName(NAME); if(material == Material.rock) { this.setHarvestLevel("pickaxe", 0); } setItemDropped(drop); this.setCreativeTab(CreativeTabs.tabBlock); } @Override @SideOnly(Side.CLIENT) @SuppressWarnings({"unchecked", "rawtypes"}) public void getSubBlocks(Item item, CreativeTabs tabs, List list) { for(int i = 0; i < NUMBER; i++) { list.add(new ItemStack(item, 1, i)); } } @Override @SideOnly(Side.CLIENT) public void registerBlockIcons(IIconRegister iReg) { icons = new IIcon[NUMBER]; for(int i=0; i < NUMBER; i++) { icons[i] = iReg.registerIcon("minefantasy2:basic/" + NAME + i); } } @Override @SideOnly(Side.CLIENT) public IIcon getIcon(int p1, int meta) { return icons[meta]; } private void setItemDropped(Object item) { if(item == null) { drop = Item.getItemFromBlock(this); } else { if(drop instanceof Item) { drop = item; } else if(drop instanceof Block) { drop = Item.getItemFromBlock((Block) drop); } else { // failsafe drop = Item.getItemFromBlock(this); } } } @Override public Item getItemDropped(int meta, Random rand, int i) { return (Item)drop; } @Override public int damageDropped(int meta) { return meta; } } package minefantasy.mf2.block.itemblocks; import cpw.mods.fml.common.registry.GameRegistry; import net.minecraft.block.Block; import net.minecraft.item.ItemBlock; import net.minecraft.item.ItemStack; /** * Supposed to be the BlockItem for the BasicMetadataBlockMF for clay wall, which is not working, * but leaving both for now. * * @author BlackJar72 * */ public class ItemClayWall extends ItemBlock { public ItemClayWall(Block block) { super(block); setHasSubtypes(true); GameRegistry.registerItem(this, block.getUnlocalizedName(), "minefantasy2"); } @Override public int getMetadata(int meta) { return meta; } @Override public String getUnlocalizedName(ItemStack item) { return getUnlocalizedName() + item.getItemDamage(); } } ...and elsewhere... public static Block clayWall = new BasicMetadataBlockMF("clayWall", Material.wood, ItemClayWall.class, 4).setHardness(1.0F).setResistance(1.0F).setStepSound(Block.soundTypeWood); Does anyone know what I'm doing wrong / what's going wrong? Any ideas what would make this work?
  5. Well, placeChest() would have originally called world.setBlock() directly, and may be different in different versions (I maintains versions back to 1.6.4 and have started using git to port bit directly). I not that worried about minor optimizations until I'm sure it fundamentally works though, so I haven't worried about little things like this for now.
  6. Thanks. Sorry for the long delay, I've been busy with other things and forgot to check back here. I guess I was using the get chunk method because of adapting from older code. I was trying to update and didn't know all the methods that take "pos" as a parameter. The chest placing code is as follows: public static final Block spawner = (Block)Block.getBlockFromName("mob_spawner"); public static final Block chest = (Block)Block.getBlockFromName("chest"); ... public static void placeBlock(World world, int x, int y, int z, Block block) { // This wrapper is a protection against possible changes in block representation, // e.g., abandoning the ID system, allowing any needed changes to be made here // instead of elsewhere. if(isProtectedBlock(world, x, y, z)) return; world.setBlockState(new BlockPos(x, y, z), block.getDefaultState()); } ... public static void placeChest(World world, int x, int y, int z) { if(!isProtectedBlock(world, x, y, z)) placeBlock(world, x, y, z, chest); } I didn't originally show the code for placing the chest block because the chest itself was always there, it was only the contents that were missing. Then, for all I know this was a Forge bug that might already have been fixed. I play mostly 1.7 and 1.6 (for MineFantasy), and only used this with 1.8 enough for some general testing, so I wouldn't know if its suddenly works now.
  7. I've discovered a problem with my mod that I don't quite understand. The following code places loot items in chests, and almost the same code works in Minecraft 1.5, 1.6, and 1.7 it work consistently: public void place(World world, int x, int y, int z, Random random) { BlockPos pos = new BlockPos(x, y, z); level += random.nextInt(2); if(level >= LootCategory.LEVELS) level = LootCategory.LEVELS - 1; DBlock.placeChest(world, x, y, z); if(world.getChunkFromChunkCoords(x / 16, z / 16).getBlock(pos) != DBlock.chest) return; TileEntityChest contents = (TileEntityChest)world.getTileEntity(pos); if(ConfigHandler.vanillaLoot && (!ConfigHandler.stingyLoot || random.nextBoolean())) vanillaChest(contents, random); int which = random.nextInt(2); switch (which) { case 0: fillChest(contents, LootType.HEAL, random); break; case 1: fillChest(contents, LootType.GEAR, random); break; } } protected void fillChest(TileEntityChest chest, LootType kind, Random random) { int num; if(ConfigHandler.stingyLoot) num = random.nextInt(2 + (level / 2)) + 1; else num = random.nextInt(3 + (level / 2)) + 2; for(int i = 0; i < num; i++) { ItemStack treasure = LootCategory.getLoot(kind, level, random).getStack(random); if(treasure != null) chest.setInventorySlotContents(random.nextInt(27), treasure); } if(!ConfigHandler.vanillaLoot) { ItemStack treasure = LootCategory.getLoot(LootType.HEAL, level, random).getStack(random); if(treasure != null) chest.setInventorySlotContents(random.nextInt(27), treasure); } } Again, almost the same code worked consistently prior to 1.8. However, in 1.8 it works inconsistently, producing long runs of successfully filling chests mixed with long runs (over several dungeons / many chunks, very many chests) of leaving chests empty. I have found the removing the line "if(world.getChunkFromChunkCoords(x / 16, z / 16).getBlock(pos) != DBlock.chest) return;" leads to crashes with a null pointer exception. My best guess is that concurrency might be involved, perhaps threads involved in placing blocks lagging behind my code so that the chest isn't there yet when it tries to add loot (or at least comes to the failsafe code) -- but that is purely an educated guess. Does anyone have any other idea of an explanation? Or a fix that doesn't involve radical changes (I have thought of spitting block and TileEntity placement into separate iterations? -- or, if its allowed, creating a separate thread that can sleep?) If so I'd be very grateful to hear any relevant info or suggestions.
  8. I have the following mcmod.info file in my mod: [ { "modid": "DLDungeonJBG", "name": "Doomlike Dungeons", "description": "Algorithmically generates multiroom dungeons resembling Doom levels into the world.", "version": "1.7.5", "mcversion": "1.7.10", "url": "http://www.minecraftforum.net/topic/2382396-152164172-doomlike-dungeons-124-sspsmp/", "updateUrl": "", "authors": ["Jared Blackburn (JaredBGreat)"], "credits": "Andrew J. Apted for creating the Oblige Level Maker which inspired this.", "logoFile": "DLDLogo2.png", "screenshots": [], "dependencies": [] } ] Which is far as I can tell is the correct format. And it seems to be in the right place, as I'd expect with the new build system: But for some reason it doesn't show up with the mods list; instead it says there is no information and to ask you mod author to supply an mcmod.info file?! At first I was mildly concerned, then just stopped thinking about it. But today someone actually asked on Minecraft Forums (http://www.minecraftforum.net/forums/mapping-and-modding/minecraft-mods/1293843-doomlike-dungeons-1-7-5?comment=391) for an mcmod.info file. All I could say is that it was there. Anyone know why this might be happening? Does it require certain character encoding (my text editor defaults to UTF-8. Or does it require Windows style line feeds to work? I have Linux so the linefeed is different. I really don't know why this is happening. Anyone have any suggesting as to how to fix it?
  9. I can now say the item registry does work (but not the block registry -- though getting a block from an item does work). block = Block.getBlockFromItem(GameRegistry.findItem(nums.nextToken(), nums.nextToken())); ... System.out.println("[DLD] Contructed Block " + block + " from " + id); ...yields... ... [14:23:21] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:63]: [DLD] Contructed Block net.minecraft.block.BlockSandStone@4f1bfe23 from minecraft:sandstone ... ...not helpful with liquids or double slabs, but it does look like the item registry is working but the block registry is not. (EDITED for conciseness, only this added; the mod may not be updated for a while, and I have other things I need to figure out and/or need to be added to/fixed in Forge -- but hopefully bringing up the GameRegistry issue will help and lead to its being fixed. Not sure if I should have put this here or in the less technical bug reporting thread?)
  10. Well, using it directly (in both a System.out.println and for placing a flying command block) still give me null. However, its not the item registry (that I know of, haven't managed to place any chests) -- its the block registry -- I'm assuming they're separate, though I realize I could be wrong. EDIT: Tried a less desirable way, still get a null pointer crash when using "block = (Block)Block.getBlockFromName(nums.nextToken());". One other thing, just grasping at straws, but I am using Linux -- so I hope there is nothing pecularly Windowsy in the strings now -- again, just grasping at straws, I wouldn't expect that to be a problem (they should just be Java-y, right).
  11. OK... [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:planks"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, planks) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:log"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, log) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:log"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, log) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:log"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, log) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:dirt"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, dirt) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:planks"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, planks) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:double_stone_slab"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, double_stone_slab) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone_wall"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone_wall) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:water"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, water) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:lava"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, lava) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:sandstone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, sandstone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:planks"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, planks) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:double_stone_slab"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, double_stone_slab) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:nether_brick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, nether_brick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:nether_brick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, nether_brick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:nether_brick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, nether_brick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:nether_brick_fence"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, nether_brick_fence) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:lava"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, lava) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:nether_brick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, nether_brick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:obsidian"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, obsidian) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:nether_brick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, nether_brick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:obsidian"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, obsidian) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:quartz_block"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, quartz_block) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:obsidian"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, obsidian) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:dirt"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, dirt) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone_wall"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone_wall) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:lava"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, lava) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:packed_ice"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, packed_ice) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:ice"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, ice) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:snow"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, snow) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:packed_ice"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, packed_ice) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:packed_ice"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, packed_ice) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone_wall"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone_wall) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:fence"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, fence) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:ice"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, ice) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:ice"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, ice) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:packed_ice"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, packed_ice) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:mossy_cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, mossy_cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:mossy_cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, mossy_cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:dirt"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, dirt) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:planks"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, planks) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:water"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, water) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:water"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, water) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:mossy_cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, mossy_cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:planks"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, planks) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:planks"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, planks) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone_wall"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone_wall) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:fence"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, fence) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:water"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, water) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:planks"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, planks) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:log"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, log) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:sandstone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, sandstone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:brick_block"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, brick_block) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:dirt"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, dirt) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:planks"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, planks) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:double_stone_slab"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, double_stone_slab) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone_wall"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone_wall) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:fence"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, fence) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:water"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, water) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:lava"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, lava) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:sandstone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, sandstone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:planks"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, planks) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:double_stone_slab"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, double_stone_slab) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:brick_block"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, brick_block) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:brick_block"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, brick_block) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:sandstone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, sandstone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:brick_block"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, brick_block) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:brick_block"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, brick_block) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:double_stone_slab"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, double_stone_slab) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:planks"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, planks) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:double_stone_slab"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, double_stone_slab) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone_wall"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone_wall) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:fence"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, fence) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:water"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, water) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:lava"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, lava) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:sandstone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, sandstone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:double_stone_slab"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, double_stone_slab) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:sandstone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, sandstone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:brick_block"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, brick_block) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:dirt"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, dirt) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:water"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, water) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:double_stone_slab"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, double_stone_slab) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:sandstone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, sandstone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:brick_block"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, brick_block) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:dirt"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, dirt) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:water"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, water) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:gravel"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, gravel) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:sandstone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, sandstone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:planks"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, planks) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:double_stone_slab"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, double_stone_slab) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:planks"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, planks) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:fence"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, fence) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:water"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, water) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:lava"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, lava) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:air"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, air) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:air"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, air) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:sand"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, sand) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stained_hardened_clay"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stained_hardened_clay) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:planks"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, planks) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:log"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, log) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:mossy_cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, mossy_cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:mossy_cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, mossy_cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:dirt"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, dirt) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:mossy_cobblestone"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, mossy_cobblestone) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:double_stone_slab"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, double_stone_slab) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:cobblestone_wall"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, cobblestone_wall) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:water"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, water) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:lava"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, lava) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:71]: [DLDUNGEONS] Obtained Block null from "minecraft:stonebrick"; [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.builder.DBlock:<init>:72]: [DLDUNGEONS] by calling GameRegistry.findBlocks(minecraft, stonebrick) [11:56:43] [Client thread/INFO]: [jaredbgreat.dldungeons.themes.ThemeReader:readLoot:117]: [DLDUNGEONS] Loading chest loot file (chests.cfg) ...all fits with the block list... minecraft:air minecraft:stone minecraft:grass minecraft:dirt minecraft:cobblestone minecraft:planks minecraft:sapling minecraft:bedrock minecraft:flowing_water minecraft:water minecraft:flowing_lava minecraft:lava minecraft:sand minecraft:gravel minecraft:gold_ore minecraft:iron_ore minecraft:coal_ore minecraft:log minecraft:leaves minecraft:sponge minecraft:glass minecraft:lapis_ore minecraft:lapis_block minecraft:dispenser minecraft:sandstone minecraft:noteblock minecraft:bed minecraft:golden_rail minecraft:detector_rail minecraft:sticky_piston minecraft:web minecraft:tallgrass minecraft:deadbush minecraft:piston minecraft:piston_head minecraft:wool minecraft:piston_extension minecraft:yellow_flower minecraft:red_flower minecraft:brown_mushroom minecraft:red_mushroom minecraft:gold_block minecraft:iron_block minecraft:double_stone_slab minecraft:stone_slab minecraft:brick_block minecraft:tnt minecraft:bookshelf minecraft:mossy_cobblestone minecraft:obsidian minecraft:torch minecraft:fire minecraft:mob_spawner minecraft:oak_stairs minecraft:chest minecraft:redstone_wire minecraft:diamond_ore minecraft:diamond_block minecraft:crafting_table minecraft:wheat minecraft:farmland minecraft:furnace minecraft:lit_furnace minecraft:standing_sign minecraft:wooden_door minecraft:ladder minecraft:rail minecraft:stone_stairs minecraft:wall_sign minecraft:lever minecraft:stone_pressure_plate minecraft:iron_door minecraft:wooden_pressure_plate minecraft:redstone_ore minecraft:lit_redstone_ore minecraft:unlit_redstone_torch minecraft:redstone_torch minecraft:stone_button minecraft:snow_layer minecraft:ice minecraft:snow minecraft:cactus minecraft:clay minecraft:reeds minecraft:jukebox minecraft:fence minecraft:pumpkin minecraft:netherrack minecraft:soul_sand minecraft:glowstone minecraft:portal minecraft:lit_pumpkin minecraft:cake minecraft:unpowered_repeater minecraft:powered_repeater minecraft:stained_glass minecraft:trapdoor minecraft:monster_egg minecraft:stonebrick minecraft:brown_mushroom_block minecraft:red_mushroom_block minecraft:iron_bars minecraft:glass_pane minecraft:melon_block minecraft:pumpkin_stem minecraft:melon_stem minecraft:vine minecraft:fence_gate minecraft:brick_stairs minecraft:stone_brick_stairs minecraft:mycelium minecraft:waterlily minecraft:nether_brick minecraft:nether_brick_fence minecraft:nether_brick_stairs minecraft:nether_wart minecraft:enchanting_table minecraft:brewing_stand minecraft:cauldron minecraft:end_portal minecraft:end_portal_frame minecraft:end_stone minecraft:dragon_egg minecraft:redstone_lamp minecraft:lit_redstone_lamp minecraft:double_wooden_slab minecraft:wooden_slab minecraft:cocoa minecraft:sandstone_stairs minecraft:emerald_ore minecraft:ender_chest minecraft:tripwire_hook minecraft:tripwire minecraft:emerald_block minecraft:spruce_stairs minecraft:birch_stairs minecraft:jungle_stairs minecraft:command_block minecraft:beacon minecraft:cobblestone_wall minecraft:flower_pot minecraft:carrots minecraft:potatoes minecraft:wooden_button minecraft:skull minecraft:anvil minecraft:trapped_chest minecraft:light_weighted_pressure_plate minecraft:heavy_weighted_pressure_plate minecraft:unpowered_comparator minecraft:powered_comparator minecraft:daylight_detector minecraft:redstone_block minecraft:quartz_ore minecraft:hopper minecraft:quartz_block minecraft:quartz_stairs minecraft:activator_rail minecraft:dropper minecraft:stained_hardened_clay minecraft:stained_glass_pane minecraft:leaves2 minecraft:log2 minecraft:acacia_stairs minecraft:dark_oak_stairs minecraft:slime minecraft:barrier minecraft:iron_trapdoor minecraft:prismarine minecraft:sea_lantern minecraft:hay_block minecraft:carpet minecraft:hardened_clay minecraft:coal_block minecraft:packed_ice minecraft:double_plant minecraft:standing_banner minecraft:wall_banner minecraft:daylight_detector_inverted minecraft:red_sandstone minecraft:red_sandstone_stairs minecraft:double_stone_slab2 minecraft:stone_slab2 minecraft:spruce_fence_gate minecraft:birch_fence_gate minecraft:jungle_fence_gate minecraft:dark_oak_fence_gate minecraft:acacia_fence_gate minecraft:spruce_fence minecraft:birch_fence minecraft:jungle_fence minecraft:dark_oak_fence minecraft:acacia_fence minecraft:spruce_door minecraft:birch_door minecraft:jungle_door minecraft:acacia_door minecraft:dark_oak_door ...sorry about the size, but that's all that's everything that should be relevant. This is with forge-1.8-11.14.1.1333, btw. All the names / IDs were in string variables though shown as literals above (the debugging outputs code left out the quotes when showing them as literals, but not relevant, what is shown is variable contents).
  12. Using the game registry to get Block objects with ameRegistry.findBlock(modID, blockName) returns null when I call it: block = GameRegistry.findBlock(nums.nextToken(), nums.nextToken()); ... System.out.println("[DLD] Contructed Block " + block + " from " + id); Reveals this to be the case. I am using correct names / modIDs -- I've printed out the entire registry, and the names I'm using (which worked in 1.7.10) are still valid.
  13. I feel stupid now -- all along it was just a config file for the wrong version, not the mods code / jar. Appologies for anyone's time I may have wasted.
  14. Long standing bug is finally fixed, now I just need to see if it needs any changes for 1.7.10 or will if the 1.7.2 version will work with that also (I'm pretty sure it will actually, but not tested -- still waiting for a stable 1.7.10).
  15. Well, that use to work, a couple weeks ago with the dev version. Now when I look all I find are *.class files (no *.java files); when I click on them I just get a "Class File Editor" with a message, "Source Not Found," instead of source code.
  16. The source code was clearly visible in the dev version, and I could easily jump to relevant parts with the "Open Declaration" option (or just browse it from the jar). But now with the release version I can't find the source. Sure, everything compiles just fine with the jar acting as a library. But I can't see the actual source code anymore, and this is kind-of important -- seeing the unlocalized names for blocks/items, looking are method declaration, learning how Minecraft and Forge actually work. That source code is pretty darn important! So what has happened? Has Forge changed so as not to show it? Is this an error in the latest version? An installation bug on my OS (Linux Mint)? Are we all supposed to install MCP separately if we want to actually see the soruce code? Why? But most importantly -- what can I do about it? How can I get and read the actual source code to the game I'm modding? Anyone know how I can get to the source?
  17. I'm wanting to load mob names from config files, including mobs from other mods, and place the mobs in spawners, but its not working. I did have a really stupid mistake of putting a period as delimiter for the list, which is fixed in my private dev version (only change) but it still doesn't work. Does anyone have an idea why? Or what I really need to do for modded mobs differently from from the vanilla ones?
  18. I have added customizable theme and customizable difficulty to the 1.5.2 and 1.6.4 versions -- hopefully the 1.7.2 version will have these soon, too.
  19. I have to say I like this idea. Not that getting it updated to all the new biomes in general isn't a priority -- but this makes a lot of sinces, especially for part about classifying the *Hills tyes as HILLS besides their other classification (and perhaps the new "M" types as Mountains?); let them all be what they are, all they are -- but the RIVER versus OCEAN things is a good idea, too. Yeah, I don't know that anyone else cares about my opinion, but I have to second this for what its worth.
  20. LexManos's post was interesting / useful because I didn't know that actually existed either... ...But there is also another way: With the new official laucher you can also have multiple Minecraft folders (great not only for versions but for different mod pack on different world or for different servers). That feature has problems with versions older than 1.6.x (unless its been fixed recently) but MultiMC has finally update for compatibility with newer versions (I don't know about MagicLaucher since I never used it).
  21. This is my first mod and I'm making some n00b mistakes dealing with Mediafire, Adfly, Forge Forums, and Curse / Minecraft Forums. Appologies. Well, I forgot to update this page when I changed version. After several version in a short time I deleted some of the earliest. The links on MinecraftForum should work now. Maybe, but I was hoping to keep it to vanilla mobs (and blocks, and items) so it could be used either as a client or a server-only mod and have a way to for users to add blocks, items, and mobs from other mods. Also, right now I'm focusing on the basics, like limiting to definable dimension, the loot, theming, and controlling where dungeons spawn -- not to mension how to update for 1.7, hopefully before 1.8 is out if possible. Perhaps I could look into finding a way to beef up the mobs spawning in the non-entrance hub-rooms. This does make good feedback though -- I'm not sure whether they are too easy, too hard, or just about right (depends a lot on what how good you are and what gear you go in with though, I guess). I wish I had more opinions on thing like the challenge level to decide if its going in the right direction. If I get the theme configs working it might especially appropriate to mix it with Lycanite's mobs (via theming configs), or maybe Dungeon mobs. I've also though of having mobs ranked more by difficulty -- right now they are just "common" or "hard" and the "hard" class is only 10% of the spawner plus an extra one at the destination hubs.
  22. I found the block class but didn't find the list of static block instances that I expected in it. But that function will be very useful. Thank you!
  23. If you mean there's a list of blocks or a method to get blocks by name or such in world this is OK -- just have to dig into world and look at functions that return a type Block. If you mean you have to get block references from the world, by copying one from the map that's going really mess things up for any mod that builds structure. But if that's the case it begs the question, "How does the vanilla world gen get its blocks to build from to begin with?" Maybe when I have time I snoop around the world generator and its block placement, too, to see if there is any hint on how to get a block. Or is there a misunderstanding? -- I don't want to get a block that already exists in the world, I want to get a kind / type of block so I can place one in the world. For example, get stoneBrick in general and build a room from it. Call me lazy if you like, but I was really hoping someone had figured it out. OTOH, if I figure out how to do this in 1.7.2 first then I guess I'll earn some bragging rights (though I'd still trade them in to save the time). It was so easy in 1.6.4
  24. I found figuring out how to place a block, in theory, pretty easy, but that leaves a real problem. How do I get a reference to a block. I'm building structures algorithmically so I don't need to get a block at (x,y,z) (well, for TileEntities I do, but in general I don't). I need to be able to start with the block in code and pass it to the world.func_147446_b(x, y, z, block, a, b) method. In 1.6 and 1.5 I just used one of the private static block variable from the Block class, but I don't see anything quite like that now. Does anyone know yet how get a block? Is there a method to get one by name / a String? Is there a list of block objects somewhere else? Any help would be appreciated.
  25. The function that seems to be the equivalent, with the metadata and flags variables seems to be: world.func_147446_b(x, y, z, block, a, b); ...now if I could just figure out a way to get all the block names/references -- the list of static final Block variables having been replaced with something else is looking like a nightmare to me.
×
×
  • Create New...

Important Information

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