Posted June 27, 20178 yr So i have here i have attached my three files. The issue I am having is in my BlockMinersFire. There is a part when i am trying to call the method trySpawnPortal from BlockMinersPortal but it is saying it is undefined. What can i do to fix this? Also if you need more information just let me know. When I hover over trySpawnPortal to fix it shows me this "The method trySpawnPortal(World, BlockPos) is undefined for the type Block" BlockMinersPortal.java BlockMinersFire.java ModBlocks.java Edited June 27, 20178 yr by Mastef_Chief editing
June 27, 20178 yr Well your miners_portal field you are accessing is defined as a Block. and Block indeed has no trySpawnPortal method defined. Either define your fiield as a BlockMinersPortal or cast miners_portal to BlockMinersPortal before accessing it's methods.
June 27, 20178 yr Author So like this "!((BlockMinersPortal) ModBlocks.miners_portal).trySpawnPortal(worldIn, pos))"
June 27, 20178 yr Either this is a part of an if statement or you have one too many closing parentheses. Why are you asking? Your IDE should tell you if your syntax is correct or not.
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.