Jump to content

ZombieEnderman5

Members
  • Posts

    16
  • Joined

  • Last visited

Everything posted by ZombieEnderman5

  1. As shown below, my browser, Google Chrome, blocks downloading the mentioned version of Forge's MDK. Why this is, I don't know; nor do I know whether it might occur for other Forge MDK versions.
  2. Are you suggesting I check the current side, too? I already have a !world.isRemote check - this is sufficient for everything I've heard of so far. As for the error - well, do you know what would be any possible causes of it right off the bat?
  3. 1.7.10 is unfortunately not supported anymore, though I can tell you that at least some of those errors are because Minecraft can't find classes in a specific mod or mods, or even the vanilla (unmodified) game.
  4. I'm trying to make an axe have a 1/3 chance to forcefully move the item dropped from the destroyed block to the entity mining the block. DISCLAIMER: This is not my mod! I'm collaborating on a mod of someone else's. My code is as follows (this is the entire class): package gatocreador887.greenvoidislands.common.item; import java.util.List; import java.util.Random; import javax.annotation.Nullable; import gatocreador887.greenvoidislands.GreenVoidIslands; import gatocreador887.greenvoidislands.common.block.GVIGenericBlock; import gatocreador887.greenvoidislands.common.block.GVILogBlock; import gatocreador887.greenvoidislands.common.core.GVIItemManager; import net.minecraft.block.state.IBlockState; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.item.EntityItem; import net.minecraft.item.ItemStack; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.Vec3d; import net.minecraft.util.text.translation.I18n; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; public class ItemFloatstoneAxe extends ItemGVIAxe { public ItemFloatstoneAxe() { super(GVIItemManager.FLOATSTONE_TOOL_MATERIAL, 8.0F, -3.1F, 0, false); } @Override public boolean hitEntity(ItemStack stack, EntityLivingBase target, EntityLivingBase attacker) { Random random = target.getRNG(); super.hitEntity(stack, target, attacker); if (random.nextInt(3) == 0) { target.motionY = 0.63F; } return true; } @Override public boolean onBlockDestroyed(ItemStack stack, World worldIn, IBlockState state, BlockPos pos, EntityLivingBase entityLiving) { Random random = entityLiving.getRNG(); if ((double)state.getBlockHardness(worldIn, pos) != 0.0D) { stack.damageItem(1, entityLiving); } if (!worldIn.isRemote && /*random.nextInt(3) == 0*/ true && (state.getBlock() instanceof GVIGenericBlock || state.getBlock() instanceof GVILogBlock)) { if (state.getBlock() instanceof GVIGenericBlock) { if (((GVIGenericBlock) state.getBlock()).itemEntities != null && !((GVIGenericBlock) state.getBlock()).itemEntities.isEmpty()) { for (EntityItem itemEntity : ((GVIGenericBlock) state.getBlock()).itemEntities) { if (itemEntity.getItem().getCount() > 1 || itemEntity.getItem().getCount() < 1) { itemEntity.getItem().setCount(1); } /*Vec3d entityLivingPos = entityLiving.getPositionVector(); Vec3d itemEntityPos = itemEntity.getPositionVector(); Vec3d direction = itemEntityPos.subtract(entityLivingPos).normalize(); float distance = itemEntity.getDistance(entityLiving); distance *= 6.0F; direction = direction.scale(distance); itemEntity.motionX = direction.x; itemEntity.motionY = direction.y; itemEntity.motionZ = direction.z; itemEntity.isAirBorne = true;*/ GreenVoidIslands.logger.info("debug: itementity posx was " + itemEntity.posX); GreenVoidIslands.logger.info("debug: itementity posy was " + itemEntity.posY); GreenVoidIslands.logger.info("debug: itementity posz was " + itemEntity.posZ); itemEntity.setPosition(entityLiving.posX, entityLiving.posY, entityLiving.posZ); //This is probably very cheaty GreenVoidIslands.logger.info("debug: itementity posx is " + itemEntity.posX); GreenVoidIslands.logger.info("debug: itementity posy is " + itemEntity.posY); GreenVoidIslands.logger.info("debug: itementity posz is " + itemEntity.posZ); GreenVoidIslands.logger.info("Spawned item entity moved successfully!"); } } } if (state.getBlock() instanceof GVILogBlock) { if (((GVILogBlock) state.getBlock()).itemEntities != null && !((GVILogBlock) state.getBlock()).itemEntities.isEmpty()) { for (EntityItem itemEntity : ((GVILogBlock) state.getBlock()).itemEntities) { if (itemEntity.getItem().getCount() > 1 || itemEntity.getItem().getCount() < 1) { itemEntity.getItem().setCount(1); } Vec3d entityLivingPos = entityLiving.getPositionVector(); Vec3d itemEntityPos = entityLiving.getPositionVector(); Vec3d direction = itemEntityPos.subtract(entityLivingPos).normalize(); float distance = itemEntity.getDistance(entityLiving); direction.scale(distance); itemEntity.setVelocity(direction.x, direction.y, direction.z); } } } } return true; } @Override @SideOnly(Side.CLIENT) public void addInformation(ItemStack stack, @Nullable World worldIn, List<String> tooltip, ITooltipFlag flagIn) { tooltip.add(I18n.translateToLocal("greenvoidislands.floatstone.melee_tool.information")); tooltip.add(I18n.translateToLocal("greenvoidislands.floatstone.harvesting_tool.information")); } } Only updated the GVIGenericBlock if set so far. My problem is that the item code you see in the GVIGenericBlock set of ifs doesn't actually move the item at all, even though the logs say the item was moved. The code in the GVILogBlock set of ifs is outdated as I haven't gotten around to updating it yet. Console logs from the last time I ran Minecraft in my development environment with this exact code: 2019-03-21 18:40:12,978 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2019-03-21 18:40:12,986 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [18:40:13] [main/INFO] [GradleStart]: username: ZombieEnderman5 [18:40:13] [main/INFO] [GradleStart]: Extra: [--uuid=beec8811-352f-4982-941d-5138ff7df927] [18:40:13] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/****/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12.2, --username, ZombieEnderman5, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --uuid=beec8811-352f-4982-941d-5138ff7df927, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [18:40:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [18:40:13] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [18:40:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [18:40:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [18:40:13] [main/INFO] [FML]: Forge Mod Loader version 14.23.2.2611 for Minecraft 1.12.2 loading [18:40:13] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_91, running on Windows 8:amd64:6.2, installed at C:\Program Files\Java\jre1.8.0_91 [18:40:13] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [18:40:13] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin [18:40:13] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin [18:40:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [18:40:13] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [18:40:13] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [18:40:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [18:40:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [18:40:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [18:40:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [18:40:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [18:40:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper 2019-03-21 18:40:14,722 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2019-03-21 18:40:15,679 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2019-03-21 18:40:15,682 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [18:40:18] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [18:40:18] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [18:40:18] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [18:40:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [18:40:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [18:40:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [18:40:20] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [18:40:22] [main/INFO]: Setting user: ZombieEnderman5 [18:40:34] [main/WARN]: Skipping bad option: lastServer: [18:40:34] [main/INFO]: LWJGL Version: 2.9.4 [18:40:39] [main/INFO] [FML]: -- System Details -- Details: Minecraft Version: 1.12.2 Operating System: Windows 8 (amd64) version 6.2 Java Version: 1.8.0_91, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 761481152 bytes (726 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'Intel' Version: '4.0.0 - Build 9.17.10.2867' Renderer: 'Intel(R) HD Graphics 4000' [18:40:39] [main/INFO] [FML]: MinecraftForge v14.23.2.2611 Initialized [18:40:39] [main/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients. [18:40:39] [main/INFO] [FML]: Replaced 1036 ore ingredients [18:40:40] [main/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [18:40:40] [main/INFO] [FML]: Searching C:\Users\****\Documents\GitHub\GreenVoidIslands\run\mods for mods [18:40:42] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 144554049 nanos [18:40:46] [main/INFO] [FML]: Forge Mod Loader has identified 5 mods to load [18:40:47] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, greenvoidislands] at CLIENT [18:40:47] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, greenvoidislands] at SERVER [18:40:49] [main/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Green Void Islands, BDcraft Musics MC111.zip [18:40:50] [main/INFO] [FML]: Processing ObjectHolder annotations [18:40:50] [main/INFO] [FML]: Found 1168 ObjectHolder annotations [18:40:50] [main/INFO] [FML]: Identifying ItemStackHolder annotations [18:40:50] [main/INFO] [FML]: Found 0 ItemStackHolder annotations [18:40:51] [main/INFO] [FML]: Configured a dormant chunk cache size of 0 [18:40:51] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [18:40:51] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Found status: OUTDATED Target: 14.23.5.2768 [18:40:51] [main/INFO] [FML]: Applying holder lookups [18:40:51] [main/INFO] [FML]: Holder lookups applied [18:40:51] [main/INFO] [FML]: Applying holder lookups [18:40:51] [main/INFO] [FML]: Holder lookups applied [18:40:51] [main/INFO] [FML]: Applying holder lookups [18:40:51] [main/INFO] [FML]: Holder lookups applied [18:40:52] [main/INFO] [FML]: Applying holder lookups [18:40:52] [main/INFO] [FML]: Holder lookups applied [18:40:52] [main/INFO] [FML]: Injecting itemstacks [18:40:52] [main/INFO] [FML]: Itemstack injection complete [18:41:20] [Sound Library Loader/INFO]: Starting up SoundSystem... [18:41:21] [Thread-5/INFO]: Initializing LWJGL OpenAL [18:41:21] [Thread-5/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [18:41:21] [Thread-5/INFO]: OpenAL initialized. [18:41:21] [Sound Library Loader/INFO]: Sound engine started [18:41:32] [main/INFO] [FML]: Max texture size: 8192 [18:41:34] [main/INFO]: Created: 512x512 textures-atlas [18:41:39] [main/ERROR] [FML]: Exception loading model for variant greenvoidislands:shronk#inventory for item "greenvoidislands:shronk", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model greenvoidislands:item/shronk with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:314) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:164) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:25) [start/:?] Caused by: java.io.FileNotFoundException: greenvoidislands:models/item/shronk.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:69) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[SimpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1600(ModelLoader.java:130) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:880) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 20 more [18:41:39] [main/ERROR] [FML]: Exception loading model for variant greenvoidislands:shronk#inventory for item "greenvoidislands:shronk", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model greenvoidislands:shronk#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:322) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:164) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:25) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1189) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 20 more [18:41:39] [main/ERROR] [FML]: Exception loading model for variant minecraft:air#inventory for item "minecraft:air", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model minecraft:item/air with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:314) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:164) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:25) [start/:?] Caused by: java.io.FileNotFoundException: minecraft:models/item/air.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:69) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[SimpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1600(ModelLoader.java:130) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:880) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 20 more [18:41:39] [main/ERROR] [FML]: Exception loading model for variant minecraft:air#inventory for item "minecraft:air", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model minecraft:air#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:322) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:164) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:25) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1189) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 20 more [18:41:39] [main/ERROR] [FML]: Exception loading model for variant greenvoidislands:double_tall_island_grass#facing=west,half=lower,variant=double_fern for blockstate "greenvoidislands:double_tall_island_grass[facing=west,half=lower,variant=double_fern]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model greenvoidislands:double_tall_island_grass#facing=west,half=lower,variant=double_fern with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:248) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:236) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:163) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:25) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1189) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [18:41:39] [main/ERROR] [FML]: Exception loading model for variant greenvoidislands:island_cobblestone_furnace_lit#facing=east for blockstate "greenvoidislands:island_cobblestone_furnace_lit[facing=east]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model greenvoidislands:island_cobblestone_furnace_lit#facing=east with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:248) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:236) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:163) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:25) [start/:?] Caused by: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model greenvoidislands:block/island_cobblestone_furnace-lit with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader$WeightedRandomModel.<init>(ModelLoader.java:677) ~[ModelLoader$WeightedRandomModel.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1190) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more Caused by: java.io.FileNotFoundException: greenvoidislands:models/block/island_cobblestone_furnace-lit.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:69) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[SimpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1600(ModelLoader.java:130) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:880) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader$WeightedRandomModel.<init>(ModelLoader.java:677) ~[ModelLoader$WeightedRandomModel.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1190) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [18:41:39] [main/ERROR] [FML]: Exception loading model for variant greenvoidislands:double_tall_island_grass#facing=west,half=upper,variant=double_fern for blockstate "greenvoidislands:double_tall_island_grass[facing=west,half=upper,variant=double_fern]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model greenvoidislands:double_tall_island_grass#facing=west,half=upper,variant=double_fern with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:248) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:236) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:163) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:25) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1189) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [18:41:39] [main/FATAL] [FML]: Suppressed additional 7 model loading errors for domain greenvoidislands [18:41:43] [main/INFO] [FML]: Applying holder lookups [18:41:43] [main/INFO] [FML]: Holder lookups applied [18:41:43] [main/INFO] [FML]: Injecting itemstacks [18:41:43] [main/INFO] [FML]: Itemstack injection complete [18:41:43] [main/WARN] [FML]: No types have been added to Biome greenvoidislands:plains_island, types have been assigned on a best-effort guess: [DRY, PLAINS] [18:41:43] [main/WARN] [FML]: No types have been added to Biome greenvoidislands:barren_island, types have been assigned on a best-effort guess: [DRY, PLAINS] [18:41:43] [main/WARN] [FML]: No types have been added to Biome greenvoidislands:forest_island, types have been assigned on a best-effort guess: [FOREST, DRY, DENSE] [18:41:43] [main/WARN] [FML]: No types have been added to Biome greenvoidislands:rocky_island, types have been assigned on a best-effort guess: [DRY, PLAINS] [18:41:43] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods [18:41:43] [main/WARN]: Skipping bad option: lastServer: [18:41:44] [main/INFO]: Narrator library for x64 successfully loaded [18:41:44] [main/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [18:41:44] [main/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [18:41:44] [main/ERROR] [TEXTURE ERRORS]: ================================================== [18:41:44] [main/ERROR] [TEXTURE ERRORS]: DOMAIN greenvoidislands [18:41:44] [main/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [18:41:44] [main/ERROR] [TEXTURE ERRORS]: domain greenvoidislands is missing 1 texture [18:41:44] [main/ERROR] [TEXTURE ERRORS]: domain greenvoidislands has 1 location: [18:41:44] [main/ERROR] [TEXTURE ERRORS]: mod greenvoidislands resources at C:\Users\****\Documents\GitHub\GreenVoidIslands\bin [18:41:44] [main/ERROR] [TEXTURE ERRORS]: ------------------------- [18:41:44] [main/ERROR] [TEXTURE ERRORS]: The missing resources for domain greenvoidislands are: [18:41:44] [main/ERROR] [TEXTURE ERRORS]: textures/items/compressed_leaves.png [18:41:44] [main/ERROR] [TEXTURE ERRORS]: ------------------------- [18:41:44] [main/ERROR] [TEXTURE ERRORS]: No other errors exist for domain greenvoidislands [18:41:44] [main/ERROR] [TEXTURE ERRORS]: ================================================== [18:41:44] [main/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [18:41:48] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [18:44:18] [Server thread/INFO]: Starting integrated minecraft server version 1.12.2 [18:44:18] [Server thread/INFO]: Generating keypair [18:44:19] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance [18:44:20] [Server thread/INFO] [FML]: Applying holder lookups [18:44:20] [Server thread/INFO] [FML]: Holder lookups applied [18:44:20] [Server thread/INFO] [FML]: Loading dimension 0 (Floating Items) (net.minecraft.server.integrated.IntegratedServer@5ee9ba51) [18:44:23] [Server thread/INFO]: Loaded 526 advancements [18:44:23] [Server thread/INFO] [FML]: Loading dimension 7 (Floating Items) (net.minecraft.server.integrated.IntegratedServer@5ee9ba51) [18:44:23] [Server thread/INFO] [FML]: Loading dimension 1 (Floating Items) (net.minecraft.server.integrated.IntegratedServer@5ee9ba51) [18:44:23] [Server thread/INFO] [FML]: Loading dimension -1 (Floating Items) (net.minecraft.server.integrated.IntegratedServer@5ee9ba51) [18:44:23] [Server thread/INFO]: Preparing start region for level 0 [18:44:25] [Server thread/INFO]: Preparing spawn area: 0% [18:44:26] [Server thread/INFO]: Preparing spawn area: 18% [18:44:27] [Server thread/INFO]: Preparing spawn area: 40% [18:44:28] [Server thread/INFO]: Preparing spawn area: 79% [18:44:30] [Server thread/INFO]: Changing view distance to 8, from 10 [18:44:36] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [18:44:36] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [18:44:36] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : minecraft@1.12.2,FML@8.0.99.99,forge@14.23.2.2611,greenvoidislands@1.0.0,mcp@9.42 [18:44:36] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [18:44:36] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established [18:44:36] [Server thread/INFO]: ZombieEnderman5[local:E:207ffe68] logged in with entity id 145 at (-30.65413080546341, 67.0, 162.484520856128) [18:44:36] [Server thread/INFO]: ZombieEnderman5 joined the game [18:44:39] [Server thread/INFO]: Saving and pausing game... [18:44:39] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld [18:44:40] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether [18:44:40] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end [18:44:40] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands [18:44:40] [main/INFO]: Loaded 9 advancements [18:44:42] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3969ms behind, skipping 79 tick(s) [18:44:42] [Server thread/INFO]: Saving and pausing game... [18:44:42] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld [18:44:42] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether [18:44:43] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end [18:44:43] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands [18:46:51] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -25.942633281189817 [18:46:51] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:46:51] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 161.8751119336159 [18:46:51] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.333401490133735 [18:46:51] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:46:51] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.4511606362201 [18:46:51] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.333401490133735 [18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.4511606362201 [18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.181119488692197 [18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5890942671841 [18:46:56] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -25.145797974538212 [18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 66.0 [18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 161.00572107761818 [18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.181119488692197 [18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5890942671841 [18:46:56] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.181119488692197 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5890942671841 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.062190978878572 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.69111955231762 [18:47:00] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.181119488692197 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5890942671841 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.062190978878572 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.69111955231762 [18:47:00] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -25.467391732924025 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 66.0 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 161.67473200436848 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.062190978878572 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.69111955231762 [18:47:00] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.062190978878572 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.69111955231762 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.13824294056101 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.40400621127398 [18:47:04] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.062190978878572 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.69111955231762 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.13824294056101 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.40400621127398 [18:47:04] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.062190978878572 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.69111955231762 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.13824294056101 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.40400621127398 [18:47:04] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -25.394860709803904 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 66.0 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 160.9137306426926 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.13824294056101 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.40400621127398 [18:47:04] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.13824294056101 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.40400621127398 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -29.722584182037792 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56385336205645 [18:47:07] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.13824294056101 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.40400621127398 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -29.722584182037792 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56385336205645 [18:47:07] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.13824294056101 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.40400621127398 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -29.722584182037792 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56385336205645 [18:47:07] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.13824294056101 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.40400621127398 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -29.722584182037792 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56385336205645 [18:47:07] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -24.98793677691712 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 66.0 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 160.90207045136654 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -29.722584182037792 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56385336205645 [18:47:07] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:47:10] [Server thread/INFO]: Saving and pausing game... [18:47:10] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld [18:47:10] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether [18:47:11] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end [18:47:11] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands [18:49:56] [Server thread/INFO]: [ZombieEnderman5: Set the time to 0] [18:49:56] [main/INFO]: [CHAT] Set the time to 0 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -29.722584182037792 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.56385336205645 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.234287244724197 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5596744205607 [18:50:01] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -29.722584182037792 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.56385336205645 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.234287244724197 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5596744205607 [18:50:01] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -29.722584182037792 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.56385336205645 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.234287244724197 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5596744205607 [18:50:01] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -29.722584182037792 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.56385336205645 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.234287244724197 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5596744205607 [18:50:01] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -29.722584182037792 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.56385336205645 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.234287244724197 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5596744205607 [18:50:01] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -26.238573623719613 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 66.0 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 160.943271969827 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.234287244724197 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5596744205607 [18:50:01] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:50:05] [Server thread/INFO]: Saving and pausing game... [18:50:05] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld [18:50:05] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether [18:50:05] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end [18:50:05] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands [18:50:14] [Server thread/INFO]: Saving and pausing game... [18:50:14] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld [18:50:15] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether [18:50:15] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end [18:50:15] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.234287244724197 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5596744205607 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938 [18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.234287244724197 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5596744205607 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938 [18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.234287244724197 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5596744205607 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938 [18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.234287244724197 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5596744205607 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938 [18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.234287244724197 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5596744205607 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938 [18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.234287244724197 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5596744205607 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938 [18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -26.223893465845414 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.70867007228813 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938 [18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:50:31] [Server thread/INFO]: Saving and pausing game... [18:50:31] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld [18:50:31] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether [18:50:31] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end [18:50:31] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands [18:51:08] [Server thread/INFO]: Saving and pausing game... [18:51:08] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld [18:51:08] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether [18:51:08] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end [18:51:08] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068 [18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068 [18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068 [18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068 [18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068 [18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068 [18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068 [18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -25.445517354197843 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.92295698643497 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0 [18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068 [18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully! [18:51:14] [Server thread/INFO]: Saving and pausing game... [18:51:14] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld [18:51:14] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether [18:51:14] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end [18:51:14] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands [18:51:33] [Server thread/INFO]: Saving and pausing game... [18:51:33] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld [18:51:33] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether [18:51:33] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end [18:51:33] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands [18:55:03] [Server thread/INFO]: Stopping server [18:55:03] [Server thread/INFO]: Saving players [18:55:03] [Server thread/INFO]: ZombieEnderman5 lost connection: Disconnected [18:55:03] [Server thread/INFO]: ZombieEnderman5 left the game [18:55:03] [Server thread/INFO]: Stopping singleplayer server as player logged out [18:55:03] [Server thread/INFO]: Saving worlds [18:55:03] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld [18:55:03] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether [18:55:03] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end [18:55:03] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands [18:55:03] [Server thread/INFO] [FML]: Unloading dimension 0 [18:55:03] [Server thread/INFO] [FML]: Unloading dimension -1 [18:55:03] [Server thread/INFO] [FML]: Unloading dimension 1 [18:55:03] [Server thread/INFO] [FML]: Unloading dimension 7 [18:55:03] [Server thread/INFO] [FML]: Applying holder lookups [18:55:03] [Server thread/INFO] [FML]: Holder lookups applied [18:55:05] [main/INFO]: Stopping! [18:55:05] [main/INFO]: SoundSystem shutting down... [18:55:06] [main/WARN]: Author: Paul Lamb, www.paulscode.com Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release My computer user name has been censored, but one thing to note: The model errors are irrelevant right now. Why exactly the item doesn't move despite console logs indicating it did, I have no idea; if I knew, I wouldn't be asking for help. I hope you still support 1.12.2. (I have absolutely no idea why Forge decided to spit out a model error regarding minecraft:air.) The method also seems to be called seven times, for whatever reason (meaning the destroy block method).
  5. As you can see in the title, my entity isn't working correctly. 1 in 3 of them are spellcasters; the other 2 spit fireballs like a Ghast does. Something to do with my SPELLCASTER property seems to be the problem; it's as though it's never set to true for my AI, but the entities themselves render correctly. (They render differently if they're spellcasters than they do if they use fireballs.) Entire entity class code below: package zombieenderman5.ghostly.common.entity.monster; import javax.annotation.Nullable; import net.minecraft.block.Block; import net.minecraft.client.Minecraft; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLiving; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.IEntityLivingData; import net.minecraft.entity.IProjectile; import net.minecraft.entity.SharedMonsterAttributes; import net.minecraft.entity.ai.EntityAIAttackMelee; import net.minecraft.entity.ai.EntityAIBase; import net.minecraft.entity.ai.EntityAIHurtByTarget; import net.minecraft.entity.ai.EntityAINearestAttackableTarget; import net.minecraft.entity.ai.EntityAISwimming; import net.minecraft.entity.ai.EntityAIWanderAvoidWater; import net.minecraft.entity.ai.EntityAIWatchClosest; import net.minecraft.entity.effect.EntityLightningBolt; import net.minecraft.entity.item.EntityXPOrb; import net.minecraft.entity.monster.EntityGhast; import net.minecraft.entity.monster.EntityIllusionIllager; import net.minecraft.entity.monster.EntityMob; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.projectile.EntityLargeFireball; import net.minecraft.init.MobEffects; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.network.datasync.DataParameter; import net.minecraft.network.datasync.DataSerializers; import net.minecraft.network.datasync.EntityDataManager; import net.minecraft.potion.PotionEffect; import net.minecraft.util.DamageSource; import net.minecraft.util.EntityDamageSourceIndirect; import net.minecraft.util.EnumParticleTypes; import net.minecraft.util.ResourceLocation; import net.minecraft.util.SoundCategory; import net.minecraft.util.SoundEvent; import net.minecraft.util.datafix.DataFixer; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.MathHelper; import net.minecraft.util.math.Vec3d; import net.minecraft.world.DifficultyInstance; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; import zombieenderman5.ghostly.Ghostly; import zombieenderman5.ghostly.GhostlyConfig; import zombieenderman5.ghostly.common.core.GhostlyLootTableManager; import zombieenderman5.ghostly.common.core.GhostlySoundManager; import zombieenderman5.ghostly.common.entity.ai.EntityAIFleeLightDarknessMage; import zombieenderman5.ghostly.common.entity.ai.EntityAIRestrictLightDarknessMage; import zombieenderman5.ghostly.common.entity.projectile.EntityCorporealityArrow; import zombieenderman5.ghostly.common.entity.projectile.EntityDustedCorporealityArrow; import zombieenderman5.ghostly.common.entity.projectile.EntityDustedVenomCorporealityArrow; import zombieenderman5.ghostly.common.entity.projectile.EntityGiantShadowOrb; import zombieenderman5.ghostly.common.entity.projectile.EntityShadowOrb; import zombieenderman5.ghostly.common.entity.projectile.ICorporealityProjectile; import zombieenderman5.ghostly.common.item.IToolOfCorporeality; /** If spellcaster, uses lightning to attack instead of fireballs **/ public class EntityShashkra extends EntityMob { private static final DataParameter<Byte> SPELL = EntityDataManager.<Byte>createKey(EntityShashkra.class, DataSerializers.BYTE); private static final DataParameter<Boolean> SPELLCASTER = EntityDataManager.<Boolean>createKey(EntityShashkra.class, DataSerializers.BOOLEAN); private static final DataParameter<Boolean> FIREBALLING = EntityDataManager.<Boolean>createKey(EntityShashkra.class, DataSerializers.BOOLEAN); protected int spellTicks; private SpellType activeSpell = EntityShashkra.SpellType.NONE; private int explosionStrength = 1; public EntityShashkra(World worldIn) { super(worldIn); experienceValue = 10; isImmuneToFire = true; setSize(1.0F, 2.5F); } /** Gets whether this Shashkra is a spellcaster **/ public boolean getSpellcaster() { return (boolean) this.dataManager.get(SPELLCASTER).booleanValue(); } /** Sets whether this Shashkra is a spellcaster **/ protected void setSpellcaster(boolean spellcaster) { this.dataManager.set(SPELLCASTER, Boolean.valueOf(spellcaster)); } /** Gets whether this Shashkra is about to spit a fireball (doesn't affect AI) **/ public boolean getFireballing() { return (boolean) this.dataManager.get(FIREBALLING).booleanValue(); } /** Sets whether this Shashkra is about to spit a fireball (doesn't affect AI) **/ protected void setFireballing(boolean fireballing) { this.dataManager.set(FIREBALLING, Boolean.valueOf(fireballing)); } /** Gets the explosion strength of this Shashkra's fireballs **/ public int getFireballStrength() { return this.explosionStrength; } public static void registerFixesShashkra(DataFixer fixer) { EntityLiving.registerFixesMob(fixer, EntityShashkra.class); } @Override protected void entityInit() { super.entityInit(); this.dataManager.register(SPELL, Byte.valueOf((byte)0)); this.dataManager.register(SPELLCASTER, Boolean.valueOf(false)); this.dataManager.register(FIREBALLING, Boolean.valueOf(false)); } @Override public void readEntityFromNBT(NBTTagCompound compound) { super.readEntityFromNBT(compound); if (compound.hasKey("SpellTicks", 99)) { this.spellTicks = compound.getInteger("SpellTicks"); } setSpellcaster(compound.getBoolean("Spellcaster")); if (compound.hasKey("ExplosionStrength", 99)) { this.explosionStrength = compound.getInteger("ExplosionStrength"); } } @Override public void writeEntityToNBT(NBTTagCompound compound) { super.writeEntityToNBT(compound); compound.setInteger("SpellTicks", getSpellTicks()); compound.setBoolean("Spellcaster", getSpellcaster()); compound.setInteger("ExplosionStrength", getFireballStrength()); } @Override public void onLivingUpdate() { if (!GhostlyConfig.MOBS.shashkras) this.setDead(); if (getSpellcaster() && (!GhostlyConfig.MOBS.shashkras || !GhostlyConfig.MOBS.spellcasterShashkras)) this.setDead(); super.onLivingUpdate(); } @Override protected void applyEntityAttributes() { super.applyEntityAttributes(); this.getEntityAttribute(SharedMonsterAttributes.FOLLOW_RANGE).setBaseValue(70.0D); this.getEntityAttribute(SharedMonsterAttributes.MAX_HEALTH).setBaseValue(200.0D); this.getEntityAttribute(SharedMonsterAttributes.MOVEMENT_SPEED).setBaseValue(0.3D); this.getEntityAttribute(SharedMonsterAttributes.ATTACK_DAMAGE).setBaseValue(6.0D); this.getEntityAttribute(SharedMonsterAttributes.ARMOR).setBaseValue(0.0D); } @Override protected void initEntityAI() { this.tasks.addTask(0, new EntityAISwimming(this)); this.tasks.addTask(1, new EntityShashkra.AICastingSpell()); this.tasks.addTask(3, new EntityShashkra.AILightningSpell(this)); this.tasks.addTask(3, new EntityShashkra.AIFireballAttack(this)); this.tasks.addTask(2, new EntityAIAttackMelee(this, 1.0D, false)); this.tasks.addTask(7, new EntityAIWanderAvoidWater(this, 1.0D)); this.tasks.addTask(8, new EntityAIWatchClosest(this, EntityPlayer.class, 70.0F, 1.0f)); this.applyEntityAI(); } protected void applyEntityAI() { this.targetTasks.addTask(1, new EntityAIHurtByTarget(this, false, new Class[]{EntityLivingBase.class})); this.targetTasks.addTask(2, new EntityAINearestAttackableTarget(this, EntityPlayer.class, true)); } @Override protected SoundEvent getAmbientSound() { return GhostlySoundManager.SHASHKRA_AMBIENT; } @Override protected SoundEvent getHurtSound(DamageSource source) { return GhostlySoundManager.SHASHKRA_HURT; } @Override protected SoundEvent getDeathSound() { return GhostlySoundManager.SHASHKRA_DEATH; } @Override protected ResourceLocation getLootTable() { return GhostlyLootTableManager.ENTITIES_SHASHKRA; } @Override public void onDeath(DamageSource cause) { super.onDeath(cause); } @Override public boolean attackEntityFrom(DamageSource source, float amount) { if (source.isFireDamage()) { return false; } else { return super.attackEntityFrom(source, amount); } } @Override public void onDeathUpdate() { ++this.deathTime; if (this.deathTime == 20) { if (!this.world.isRemote && (this.isPlayer() || this.recentlyHit > 0 && this.canDropLoot() && this.world.getGameRules().getBoolean("doMobLoot"))) { int i = this.getExperiencePoints(this.attackingPlayer); i = net.minecraftforge.event.ForgeEventFactory.getExperienceDrop(this, this.attackingPlayer, i); while (i > 0) { int j = EntityXPOrb.getXPSplit(i); i -= j; this.world.spawnEntity(new EntityXPOrb(this.world, this.posX, this.posY, this.posZ, j)); } } this.setDead(); for (int k = 0; k < 20; ++k) { if (Minecraft.getMinecraft().world != null && this.world.isRemote) { double d2 = this.rand.nextGaussian() * 0.02D; double d0 = this.rand.nextGaussian() * 0.02D; double d1 = this.rand.nextGaussian() * 0.02D; Minecraft.getMinecraft().world.spawnParticle(EnumParticleTypes.SMOKE_LARGE, this.posX + (double)(this.rand.nextFloat() * this.width * 2.0F) - (double)this.width, this.posY + (double)(this.rand.nextFloat() * this.height), this.posZ + (double)(this.rand.nextFloat() * this.width * 2.0F) - (double)this.width, d2, d0, d1); } } } } public boolean isSpellcasting() { if (this.world.isRemote) { return ((Byte)this.dataManager.get(SPELL)).byteValue() > 0; } else { return this.spellTicks > 0; } } public EntityShashkra.ShashkraArmPose getArmPose() { if (isSpellcasting()) return EntityShashkra.ShashkraArmPose.SPELLCASTING; return EntityShashkra.ShashkraArmPose.EMPTY; } public void setSpellType(EntityShashkra.SpellType spellType) { this.activeSpell = spellType; this.dataManager.set(SPELL, Byte.valueOf((byte)spellType.id)); } protected EntityShashkra.SpellType getSpellType() { return !this.world.isRemote ? this.activeSpell : EntityShashkra.SpellType.getFromId(((Byte)this.dataManager.get(SPELL)).byteValue()); } @Override protected void updateAITasks() { super.updateAITasks(); if (this.spellTicks > 0) { --this.spellTicks; } } @Override public void onUpdate() { super.onUpdate(); if (this.world.isRemote && this.isSpellcasting()) { EntityShashkra.SpellType entityshashkra$spelltype = getSpellType(); double d0 = entityshashkra$spelltype.particleSpeed[0]; double d1 = entityshashkra$spelltype.particleSpeed[1]; double d2 = entityshashkra$spelltype.particleSpeed[2]; float f = this.renderYawOffset * 0.017453292F + MathHelper.cos((float)this.ticksExisted * 0.6662F) * 0.25F; float f1 = MathHelper.cos(f); float f2 = MathHelper.sin(f); this.world.spawnParticle(entityshashkra$spelltype.particleType, this.posX + (double)f1 * 0.6D, this.posY + 2.5D, this.posZ + (double)f2 * 0.6D, d0, d1, d2); this.world.spawnParticle(entityshashkra$spelltype.particleType, this.posX - (double)f1 * 0.6D, this.posY + 2.5D, this.posZ - (double)f2 * 0.6D, d0, d1, d2); } } protected int getSpellTicks() { return this.spellTicks; } protected SoundEvent getSpellSound() { if (this.getSpellType() == EntityShashkra.SpellType.LIGHTNING) return GhostlySoundManager.SHASHKRA_PREPARE_LIGHTNING; return null; } @Override @Nullable public IEntityLivingData onInitialSpawn(DifficultyInstance difficulty, @Nullable IEntityLivingData livingdata) { livingdata = super.onInitialSpawn(difficulty, livingdata); if (GhostlyConfig.MOBS.spellcasterShashkras && this.rand.nextInt(2) == 0) { setSpellcaster(true); } setCanPickUpLoot(false); return livingdata; } public static enum ShashkraArmPose { EMPTY, SPELLCASTING; } public static enum SpellType { NONE(0, EnumParticleTypes.CLOUD, 0.0D, 0.0D, 0.0D), LIGHTNING(1, EnumParticleTypes.FIREWORKS_SPARK, 0.3D, 0.3D, 0.3D); private final int id; private final EnumParticleTypes particleType; /** Particle motion speed. An array with 3 values: x, y, and z. */ private final double[] particleSpeed; private SpellType(int idIn, EnumParticleTypes type, double xParticleSpeed, double yParticleSpeed, double zParticleSpeed) { id = idIn; particleType = type; particleSpeed = new double[] {xParticleSpeed, yParticleSpeed, zParticleSpeed}; } public static EntityShashkra.SpellType getFromId(int idIn) { for (EntityShashkra.SpellType entityshashkra$spelltype : values()) { if (idIn == entityshashkra$spelltype.id) { return entityshashkra$spelltype; } } return NONE; } } public class AICastingSpell extends EntityAIBase { public AICastingSpell() { this.setMutexBits(3); } /** * Returns whether the EntityAIBase should begin execution. */ @Override public boolean shouldExecute() { return EntityShashkra.this.getSpellTicks() > 0; } /** * Execute a one shot task or start executing a continuous task */ @Override public void startExecuting() { super.startExecuting(); EntityShashkra.this.navigator.clearPath(); } /** * Reset the task's internal state. Called when this task is interrupted by another one */ @Override public void resetTask() { super.resetTask(); EntityShashkra.this.setSpellType(EntityShashkra.SpellType.NONE); } /** * Keep ticking a continuous task that has already been started */ @Override public void updateTask() { if (EntityShashkra.this.getAttackTarget() != null) { EntityShashkra.this.getLookHelper().setLookPositionWithEntity(EntityShashkra.this.getAttackTarget(), (float)EntityShashkra.this.getHorizontalFaceSpeed(), (float)EntityShashkra.this.getVerticalFaceSpeed()); } } } public abstract class AIUseSpell extends EntityAIBase { protected int spellWarmup; protected int spellCooldown; private final EntityShashkra shashkra; public AIUseSpell(EntityShashkra shashkraIn) { shashkra = shashkraIn; } /** * Returns whether the EntityAIBase should begin execution. */ @Override public boolean shouldExecute() { if (getAttackTarget() == null) { return false; } else if (isSpellcasting()) { return false; } else { return shashkra.ticksExisted >= spellCooldown; } } /** * Reset the task's internal state. Called when this task is interrupted by * another one */ @Override public void resetTask() { super.resetTask(); setSpellType(EntityShashkra.SpellType.NONE); spellTicks = 0; } /** * Returns whether an in-progress EntityAIBase should continue executing */ @Override public boolean shouldContinueExecuting() { return getAttackTarget() != null && spellWarmup > 0; } /** * Execute a one shot task or start executing a continuous task */ @Override public void startExecuting() { spellWarmup = getCastWarmupTime(); spellTicks = getCastingTime(); SoundEvent soundevent = getSpellPrepareSound(); if (soundevent != null) { playSound(soundevent, 1.0F, 1.0F); } setSpellType(getSpellType()); } /** * Keep ticking a continuous task that has already been started */ @Override public void updateTask() { --spellWarmup; if (spellWarmup == 0) { castSpell(); spellCooldown = shashkra.ticksExisted + getCastingInterval(); playSound(getSpellSound(), 1.0F, 1.0F); } } protected abstract void castSpell(); protected int getCastWarmupTime() { return 20; } protected abstract int getCastingTime(); protected abstract int getCastingInterval(); @Nullable protected abstract SoundEvent getSpellPrepareSound(); protected abstract EntityShashkra.SpellType getSpellType(); public boolean basicExecutionRequirements() { return shashkra.getSpellcaster() && shashkra.getAttackTarget() != null && canEntityBeSeen(getAttackTarget()) && shashkra.getDistanceSq(getAttackTarget()) > 100.0D; } } class AILightningSpell extends EntityShashkra.AIUseSpell { private AILightningSpell(EntityShashkra shashkraIn) { super(shashkraIn); } /** * Returns whether the EntityAIBase should begin execution. */ @Override public boolean shouldExecute() { if (!super.shouldExecute()) { return false; } else if (EntityShashkra.this.getAttackTarget() != null) { return false; } else { return basicExecutionRequirements(); } } /** * Execute a one shot task or start executing a continuous task */ @Override public void startExecuting() { super.startExecuting(); } @Override protected int getCastWarmupTime() { return 30; } @Override protected int getCastingTime() { return 20; } @Override protected int getCastingInterval() { return 100; } @Override protected void castSpell() { EntityShashkra.this.world.addWeatherEffect(new EntityLightningBolt(EntityShashkra.this.world, EntityShashkra.this.getAttackTarget().posX, EntityShashkra.this.getAttackTarget().posY, EntityShashkra.this.getAttackTarget().posZ, false)); } @Override protected SoundEvent getSpellPrepareSound() { return GhostlySoundManager.SHASHKRA_PREPARE_LIGHTNING; } @Override protected EntityShashkra.SpellType getSpellType() { return EntityShashkra.SpellType.LIGHTNING; } } static class AIFireballAttack extends EntityAIBase { public int attackTimer; private final EntityShashkra shashkra; public AIFireballAttack(EntityShashkra shashkra) { this.shashkra = shashkra; } /** * Returns whether the EntityAIBase should begin execution. */ @Override public boolean shouldExecute() { return !shashkra.getSpellcaster() && this.shashkra.getAttackTarget() != null && shashkra.canEntityBeSeen(shashkra.getAttackTarget()); } /** * Execute a one shot task or start executing a continuous task */ @Override public void startExecuting() { this.attackTimer = 0; } /** * Reset the task's internal state. Called when this task is interrupted by another one */ @Override public void resetTask() { this.shashkra.setFireballing(false); } /** * Keep ticking a continuous task that has already been started */ @Override public void updateTask() { EntityLivingBase entitylivingbase = this.shashkra.getAttackTarget(); double d0 = 64.0D; if (entitylivingbase.getDistanceSq(this.shashkra) < 225.0D && this.shashkra.canEntityBeSeen(entitylivingbase)) { World world = this.shashkra.world; ++this.attackTimer; if (this.attackTimer == 10) { world.playSound(shashkra.posX, shashkra.posY, shashkra.posZ, GhostlySoundManager.SHASHKRA_FIREBALL_WARNING, SoundCategory.HOSTILE, 2.0F, 1.0F, false); } if (this.attackTimer == 20) { double d1 = 4.0D; Vec3d vec3d = this.shashkra.getLook(1.0F); double d2 = entitylivingbase.posX - (this.shashkra.posX + vec3d.x * 4.0D); double d3 = entitylivingbase.getEntityBoundingBox().minY + (double)(entitylivingbase.height / 2.0F) - (0.5D + this.shashkra.posY + (double)(this.shashkra.height / 2.0F)); double d4 = entitylivingbase.posZ - (this.shashkra.posZ + vec3d.z * 4.0D); world.playEvent((EntityPlayer)null, 1016, new BlockPos(this.shashkra), 0); EntityLargeFireball entitylargefireball = new EntityLargeFireball(world, this.shashkra, d2, d3, d4); entitylargefireball.explosionPower = this.shashkra.getFireballStrength(); entitylargefireball.posX = this.shashkra.posX + vec3d.x * 0.2D; entitylargefireball.posY = this.shashkra.posY + (double)(this.shashkra.height / 2.0F) + 0.5D; entitylargefireball.posZ = this.shashkra.posZ + vec3d.z * 0.2D; world.spawnEntity(entitylargefireball); this.attackTimer = -40; } } else if (this.attackTimer > 0) { --this.attackTimer; } this.shashkra.setFireballing(this.attackTimer > 10); } } } I'm not sure what exactly my problem is, but I listed a thought above.
  6. Absolutely, that's required. In the Material class, you'll find that only some of the default materials for blocks invoke a method that causes them to require a tool. Material.ROCK is one of them; Material.GROUND is not, which is why you can break dirt with your hand but a shovel mines it faster. (Note: If this is considered a necropost, feel free to delete, if you have the permissions to do so. Just trying to be helpful.)
  7. Not sure I can do that, unless I check in the onLivingUpdate() method that the mod is loaded and, if not, use setDead() on the entity. I can do spawn checks. EDIT BELOW: For spawn eggs, I can probably register the entity without registering a spawn egg if the mod isn't loaded, else register it with a spawn egg
  8. Thanks for the reply. EDIT BELOW: How could I do that? I don't think there's any way for me to register entities yet not have them exist in-game if a mod isn't loaded.
  9. Specifically, can you detect if a mod is loaded via its ID? Ex: if (Loader.isLoaded("theboxingdead")) { ... } In this case, Loader means whatever class could check if mods are loaded via ID; "theboxingdead" is a String that encompasses the mod ID to query. I'm asking because I want to add compatibility between my mod Ghostly and my mod The Boxing Dead, but don't know how to check if The Boxing Dead and Ghostly are both loaded. The code would be in Ghostly's .jar file, not The Boxing Dead's. The reason for even using an if statement: I want to register certain entities only if The Boxing Dead also exists, since they're variants of its entities and as such there's no reason to register them if The Boxing Dead isn't loaded.
  10. I thought Left Shift (LSHIFT) did that? CTRL+W is usually used to force sprinting, correct?
  11. Ah. I should have thought of that... Sorry.
  12. Do you have a low RAM amount? If so, that can contribute to lag (believe me, I know. My computer has frozen completely for several minutes at a time due to Minecraft using too much memory).
  13. I have an error with in-class entity AI. How this works is that I have a static AI class inside of my entity class, however when I try to add the AI to my entity, Eclipse throws an error, asking me to create a method. @Override protected void initEntityAI() { this.tasks.addTask(0, new EntityAISwimming(this)); this.tasks.addTask(2, new EntityAIAttackMelee(this, 1.0D, false)); this.tasks.addTask(7, new EntityAIWanderAvoidWater(this, 1.0D, 0.0F)); this.tasks.addTask(8, new EntityAIWatchClosest(this, EntityPlayer.class, 8.0F)); this.tasks.addTask(8, new EntityAILookIdle(this)); this.tasks.addTask(10, new EntityInfestedEnderman.AIPlaceBlock(this)); this.tasks.addTask(11, new EntityInfestedEnderman.AITakeBlock(this)); this.targetTasks.addTask(1, new EntityInfestedEnderman.AIFindPlayer(this)); this.targetTasks.addTask(4, EntityInfestedEnderman.AIInfestEndermanAttack(this)); this.targetTasks.addTask(2, new EntityAIHurtByTarget(this, false, new Class[0])); } The error is being thrown on line 12 of the above code sample. My AI class, copied and modified from the vindicator's Johnny attack AI: static class AIInfestEndermanAttack extends EntityAINearestAttackableTarget<EntityLivingBase> { public AIInfestEndermanAttack(EntityInfestedEnderman shade) { super(shade, EntityLivingBase.class, 0, true, true, EntityInfestedEnderman.INFEST_ENDERMAN_SELECTOR); } /** * Returns whether the EntityAIBase should begin execution. */ @Override public boolean shouldExecute() { return GhostlyConfig.MOBS.infestedEndermenInfestOtherEndermen && super.shouldExecute(); } } The predicate used is below. private static final Predicate<Entity> INFEST_ENDERMAN_SELECTOR = new Predicate<Entity>() { public boolean apply(@Nullable Entity p_apply_1_) { return p_apply_1_ instanceof EntityInfestedEnderman && !(p_apply_1_ instanceof EntityInfestedEnderman) && ((EntityLivingBase)p_apply_1_).attackable(); } }; My entity extends EntityEnderman.
  14. Well, you could also use JSONLint.
×
×
  • Create New...

Important Information

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