Posted March 31, 20169 yr heres the gist link https://gist.github.com/johnfg12/3cc6512dba006797ff1791890cad710e the main issue is with this line WorldGenMinable worldgenminable = new WorldGenMinable(block, maxVeinSize, generateIn); the second part new WorldGenMinable(block, maxVeinSize, generateIn); gives me a error saying The constructor WorldGenMinable(Block, int, Block) is undefined. as im really new to this i cant work out how to sort this error out any help would be greatly appreciated thanks
March 31, 20169 yr Author it wants The constructor WorldGenMinable(Block, int, Block) is block int block but it should have that
March 31, 20169 yr You are trying to pass a Block as third parameter, but it wants an Predicate<IBlockState> . To get one, use BlockHelper.forBlock(Block) . Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support. 1.12 -> 1.13 primer by williewillus. 1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support. http://www.howoldisminecraft1710.today/
April 1, 20169 yr Author BlockHelper.forBlock doesnt exist anymore from what i can tell ohh i got it its BlockStateMatcher.forBlock(block) i think
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.