Jump to content

Recommended Posts

Posted (edited)

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 : [email protected],[email protected],[email protected],[email protected],[email protected]
[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).

Edited by ZombieEnderman5
Clarification
Posted
On 3/22/2019 at 10:37 AM, ZombieEnderman5 said:

I have absolutely no idea why Forge decided to spit out a model error regarding minecraft:air

This indicates a big error in your mod. 

 

On 3/22/2019 at 10:37 AM, ZombieEnderman5 said:

The method also seems to be called seven times, for whatever reason (meaning the destroy block method).

Make sure to do all stuff with entities on the server. 

 

Try stepping through your code with the debugger

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Posted

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?

Posted

world.isRemote is what I was talking about. 

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I'm no Java expert, but am trying to generate the dimension noise_settings for my mod using code, but am stuck on how to program 'string' arguments. I have used the Noise Settings Generator at https://misode.github.io/worldgen/noise-settings/?version=1.20 to design my noise settings In my code, my RegistrySetBuilder adds Registries.NOISE_SETTINGS, and in that bootstrap I register my noise which creates a new NoiseGeneratorSettings. This creates a new NoiseRouter, to which I pass DensityFunction parameters Noise Settings Generator Float Arguments I can code like: DensityFunctions.constant(1) Object Arguments I can code like: DensityFunctions.noise(holdergetter.getOrThrow(Noises.SURFACE), 500.0D, -12.0D) But I can't see how to do String Arguments. In misode they look like Argument: String: minecraft:overworld_large_biomes/sloped_cheese   Any ideas?
    • Hello everyone, Very junior mod maker here. I'm making a floating plank that sits over water. There's this heavy shadow on it when there's a block over it for some reason. As you can see in the picture, the lily pad that has a block over it is just a little darker from the shadow. however my custom plank is almost dark. I have no idea what might cause this. If it is how I generate the block model, here's the code I'm using:   getBuilder(block.getId().getPath()) .ao(false) .texture("particle", new ResourceLocation(xxxxx.MODID, "block/" + block.getId().getPath())) .texture("texture", new ResourceLocation(xxxxx.MODID, "block/" + block.getId().getPath())) .element() .from(0.01f, -2f, 0.01f) .to(15.99f, 0.01f, 15.99f) .face(Direction.DOWN).uvs(0f, 0f, 16f, 16f).texture("#texture").cullface(Direction.DOWN).tintindex(0).end() .face(Direction.UP).uvs(0f, 0f, 16f, 16f).texture("#texture").cullface(Direction.UP).tintindex(0).end() .face(Direction.NORTH).uvs(0f, 0f, 16f, 2.01f).texture("#texture").cullface(Direction.NORTH).tintindex(0).end() .face(Direction.SOUTH).uvs(0f, 0f, 16f, 2.01f).texture("#texture").cullface(Direction.SOUTH).tintindex(0).end() .face(Direction.EAST).uvs(0f, 0f, 2.01f, 16f).texture("#texture").rotation(ModelBuilder.FaceRotation.CLOCKWISE_90).cullface(Direction.EAST).tintindex(0).end() .face(Direction.WEST).uvs(0f, 0f, 2.01f, 16f).texture("#texture").rotation(ModelBuilder.FaceRotation.CLOCKWISE_90).cullface(Direction.WEST).tintindex(0).end() .end();  
    • [30Jan2025 13:41:57. 714] [main/INFO] [cpw. mods. modlauncher. Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, arclightserver, --fml. forgeVersion, 47. 3. 22, --fml. mcVersion, 1. 20. 1, --fml. forgeGroup, net. minecraftforge, --fml. mcpVersion, 20230612. 114412, nogui] 14[30Jan2025 13:41:57. 715] [main/INFO] [cpw. mods. modlauncher. Launcher/MODLAUNCHER]: ModLauncher 10. 0. 9+10. 0. 9+main. dcd20f30 starting: java version 17. 0. 13 by Eclipse Adoptium; OS Linux arch amd64 version 5. 15. 0-131-generic 15[30Jan2025 13:41:58. 774] [main/INFO] [net. minecraftforge. fml. loading. ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is arclightserver 16[30Jan2025 13:41:58. 804] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0. 8. 5 Source=union:/server/libraries/org/spongepowered/mixin/0. 8. 5/mixin-0. 8. 5. jar%2399!/ Service=ModLauncher Env=SERVER 17[30Jan2025 13:41:59. 305] [main/WARN] [net. minecraftforge. fml. loading. moddiscovery. ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/fmlcore/1. 20. 1-47. 3. 22/fmlcore-1. 20. 1-47. 3. 22. jar is missing mods. toml file 18[30Jan2025 13:41:59. 308] [main/WARN] [net. minecraftforge. fml. loading. moddiscovery. ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/javafmllanguage/1. 20. 1-47. 3. 22/javafmllanguage-1. 20. 1-47. 3. 22. jar is missing mods. toml file 19[30Jan2025 13:41:59. 309] [main/WARN] [net. minecraftforge. fml. loading. moddiscovery. ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/lowcodelanguage/1. 20. 1-47. 3. 22/lowcodelanguage-1. 20. 1-47. 3. 22. jar is missing mods. toml file 20[30Jan2025 13:41:59. 311] [main/WARN] [net. minecraftforge. fml. loading. moddiscovery. ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/mclanguage/1. 20. 1-47. 3. 22/mclanguage-1. 20. 1-47. 3. 22. jar is missing mods. toml file 21[30Jan2025 13:41:59. 572] [main/INFO] [net. minecraftforge. fml. loading. moddiscovery. JarInJarDependencyLocator/]: Found 15 dependencies adding them to mods collection 22[30Jan2025 13:42:04. 300] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 23[30Jan2025 13:42:04. 507] [main/ERROR] [mixin/]: Mixin config mixins. megamons-common. json does not specify "minVersion" property 24[30Jan2025 13:42:04. 621] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [de. maxhenkel. tradecycling. MixinConnector] 25[30Jan2025 13:42:04. 625] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [io. izzel. arclight. common. mod. ArclightConnector] 26[30Jan2025 13:42:04. 696] [main/INFO] [Arclight/]: Arclight core mixin added. 27[30Jan2025 13:42:04. 708] [main/INFO] [Arclight/]: Arclight optimization mixin added. 28[30Jan2025 13:42:04. 712] [main/INFO] [cpw. mods. modlauncher. LaunchServiceHandler/MODLAUNCHER]: Launching target 'arclightserver' with arguments [nogui] 29[30Jan2025 13:42:04. 982] [main/WARN] [mixin/]: Reference map 'handcrafted-forge-1. 20. 1-forge-refmap. json' for handcrafted. mixins. json could not be read. If this is a development environment you can ignore this message 30[30Jan2025 13:42:05. 003] [main/WARN] [mixin/]: Reference map 'megamons-forge-refmap. json' for mixins. megamons-forge. json could not be read. If this is a development environment you can ignore this message 31[30Jan2025 13:42:05. 021] [main/WARN] [mixin/]: Reference map 'CreateLiquidFuel. refmap. json' for createliquidfuel. mixins. json could not be read. If this is a development environment you can ignore this message 32[30Jan2025 13:42:05. 029] [main/WARN] [mixin/]: Reference map 'chiselsandbits. refmap. json' for chisels-and-bits. mixins. json could not be read. If this is a development environment you can ignore this message 33[30Jan2025 13:42:06. 109] [main/WARN] [mixin/]: Error loading class: com/copycatsplus/copycats/content/copycat/slab/CopycatSlabBlock (java. lang. ClassNotFoundException: com. copycatsplus. copycats. content. copycat. slab. CopycatSlabBlock) 34[30Jan2025 13:42:06. 109] [main/WARN] [mixin/]: @Mixin target com. copycatsplus. copycats. content. copycat. slab. CopycatSlabBlock was not found create_connected. mixins. json:compat. CopycatBlockMixin 35[30Jan2025 13:42:06. 112] [main/WARN] [mixin/]: Error loading class: com/copycatsplus/copycats/content/copycat/board/CopycatBoardBlock (java. lang. ClassNotFoundException: com. copycatsplus. copycats. content. copycat. board. CopycatBoardBlock) 36[30Jan2025 13:42:06. 112] [main/WARN] [mixin/]: @Mixin target com. copycatsplus. copycats. content. copycat. board. CopycatBoardBlock was not found create_connected. mixins. json:compat. CopycatBlockMixin 37[30Jan2025 13:42:06. 154] [main/WARN] [mixin/]: Error loading class: me/jellysquid/mods/lithium/common/ai/pathing/PathNodeDefaults (java. lang. ClassNotFoundException: me. jellysquid. mods. lithium. common. ai. pathing. PathNodeDefaults) 38[30Jan2025 13:42:06. 212] [main/ERROR] [net. minecraftforge. fml. loading. RuntimeDistCleaner/DISTXFORM]: Attempted to load class com/simibubi/create/foundation/gui/AbstractSimiScreen for invalid dist DEDICATED_SERVER 39[30Jan2025 13:42:06. 213] [main/WARN] [mixin/]: Error loading class: com/simibubi/create/foundation/gui/AbstractSimiScreen (java. lang. RuntimeException: Attempted to load class com/simibubi/create/foundation/gui/AbstractSimiScreen for invalid dist DEDICATED_SERVER) 40[30Jan2025 13:42:06. 213] [main/WARN] [mixin/]: @Mixin target com. simibubi. create. foundation. gui. AbstractSimiScreen was not found create_connected. mixins. json:sequencedgearshift. AbstractSimiScreenAccessor 41[30Jan2025 13:42:07. 237] [main/WARN] [mixin/]: Error loading class: juuxel/adorn/block/variant/BlockVariantSets (java. lang. ClassNotFoundException: juuxel. adorn. block. variant. BlockVariantSets) 42[30Jan2025 13:42:07. 237] [main/WARN] [mixin/]: @Mixin target juuxel. adorn. block. variant. BlockVariantSets was not found mixins. cobblemon-common. json:invoker. AdornRegisterInvoker 43[30Jan2025 13:42:11. 158] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com. llamalad7. mixinextras. service. MixinExtrasServiceImpl(version=0. 3. 5). 44[30Jan2025 13:42:20. 266] [main/WARN] [mixin/]: Static binding violation: PRIVATE @Overwrite method m_147092_ in mixins. arclight. core. json:world. entity. ExperienceOrbMixin cannot reduce visibiliy of PUBLIC target method, visibility will be upgraded. 45[30Jan2025 13:42:21. 288] [main/ERROR] [net. minecraftforge. coremod. transformer. CoreModBaseTransformer/COREMOD]: Error occurred applying transform of coremod coremods/field_to_method. js function biome 46java. lang. IllegalStateException: Field f_47437_ is not private and an instance field 47at net. minecraftforge. coremod. api. ASMAPI. redirectFieldToMethod(ASMAPI. java:1069) ~[coremods-5. 2. 4. jar%2388!/:?] {} 48at org. openjdk. nashorn. internal. scripts. Script$Recompilation$22$292A$\^eval\_. initializeCoreMod#transformer(:11) ~[?:?] {} 49at org. openjdk. nashorn. internal. runtime. ScriptFunctionData. invoke(ScriptFunctionData. java:648) ~[nashorn-core-15. 4. jar%23100!/:?] {} 50at org. openjdk. nashorn. internal. runtime. ScriptFunction. invoke(ScriptFunction. java:513) ~[nashorn-core-15. 4. jar%23100!/:?] {} 51at org. openjdk. nashorn. internal. runtime. ScriptRuntime. apply(ScriptRuntime. java:520) ~[nashorn-core-15. 4. jar%23100!/:?] {} 52at org. openjdk. nashorn. api. scripting. ScriptObjectMirror. call(ScriptObjectMirror. java:111) ~[nashorn-core-15. 4. jar%23100!/:?] {} 53at net. minecraftforge. coremod. NashornFactory. lambda$getFunction$0(NashornFactory. java:37) ~[coremods-5. 2. 4. jar%2388!/:5. 2. 4] {} 54at net. minecraftforge. coremod. transformer. CoreModClassTransformer. runCoremod(CoreModClassTransformer. java:22) ~[coremods-5. 2. 4. jar%2388!/:?] {} 55at net. minecraftforge. coremod. transformer. CoreModClassTransformer. runCoremod(CoreModClassTransformer. java:14) ~[coremods-5. 2. 4. jar%2388!/:?] {} 56at net. minecraftforge. coremod. transformer. CoreModBaseTransformer. transform(CoreModBaseTransformer. java:60) ~[coremods-5. 2. 4. jar%2388!/:?] {} 57at cpw. mods. modlauncher. TransformerHolder. transform(TransformerHolder. java:41) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 58at cpw. mods. modlauncher. ClassTransformer. performVote(ClassTransformer. java:179) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 59at cpw. mods. modlauncher. ClassTransformer. transform(ClassTransformer. java:117) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 60at cpw. mods. modlauncher. TransformingClassLoader. maybeTransformClassBytes(TransformingClassLoader. java:50) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 61at cpw. mods. cl. ModuleClassLoader. getMaybeTransformedClassBytes(ModuleClassLoader. java:250) ~[securejarhandler-2. 1. 10. jar:?] {} 62at cpw. mods. modlauncher. TransformingClassLoader. buildTransformedClassNodeFor(TransformingClassLoader. java:58) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 63at cpw. mods. modlauncher. LaunchPluginHandler. lambda$announceLaunch$10(LaunchPluginHandler. java:100) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 64at org. spongepowered. asm. launch. MixinLaunchPluginLegacy. getClassNode(MixinLaunchPluginLegacy. java:222) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 65at org. spongepowered. asm. launch. MixinLaunchPluginLegacy. getClassNode(MixinLaunchPluginLegacy. java:207) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 66at org. spongepowered. asm. mixin. transformer. ClassInfo. forName(ClassInfo. java:2005) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 67at org. spongepowered. asm. mixin. transformer. ClassInfo. forType(ClassInfo. java:2059) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 68at org. spongepowered. asm. mixin. transformer. ClassInfo. forDescriptor(ClassInfo. java:2038) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 69at org. spongepowered. asm. mixin. transformer. MixinPreProcessorStandard. transformMethod(MixinPreProcessorStandard. java:752) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 70at org. spongepowered. asm. mixin. transformer. MixinPreProcessorStandard. transform(MixinPreProcessorStandard. java:739) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 71at org. spongepowered. asm. mixin. transformer. MixinPreProcessorStandard. attach(MixinPreProcessorStandard. java:310) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 72at org. spongepowered. asm. mixin. transformer. MixinPreProcessorStandard. createContextFor(MixinPreProcessorStandard. java:280) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 73at org. spongepowered. asm. mixin. transformer. MixinInfo. createContextFor(MixinInfo. java:1288) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 74at org. spongepowered. asm. mixin. transformer. MixinApplicatorStandard. apply(MixinApplicatorStandard. java:292) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 75at org. spongepowered. asm. mixin. transformer. TargetClassContext. apply(TargetClassContext. java:383) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 76at org. spongepowered. asm. mixin. transformer. TargetClassContext. applyMixins(TargetClassContext. java:365) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 77at org. spongepowered. asm. mixin. transformer. MixinProcessor. applyMixins(MixinProcessor. java:363) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 78at org. spongepowered. asm. mixin. transformer. MixinTransformer. transformClass(MixinTransformer. java:250) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 79at org. spongepowered. asm. service. modlauncher. MixinTransformationHandler. processClass(MixinTransformationHandler. java:131) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 80at org. spongepowered. asm. launch. MixinLaunchPluginLegacy. processClass(MixinLaunchPluginLegacy. java:131) ~[mixin-0. 8. 5. jar%2399!/:0. 8. 5+Jenkins-b310. git-155314e6e91465dad727e621a569906a410cd6f4] {} 81at cpw. mods. modlauncher. serviceapi. ILaunchPluginService. processClassWithFlags(ILaunchPluginService. java:156) ~[modlauncher-10. 0. 9. jar%2389!/:10. 0. 9+10. 0. 9+main. dcd20f30] {} 82at cpw. mods. modlauncher. LaunchPluginHandler. offerClassNodeToPlugins(LaunchPluginHandler. java:88) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 83at cpw. mods. modlauncher. ClassTransformer. transform(ClassTransformer. java:120) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 84at cpw. mods. modlauncher. TransformingClassLoader. maybeTransformClassBytes(TransformingClassLoader. java:50) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 85at cpw. mods. cl. ModuleClassLoader. readerToClass(ModuleClassLoader. java:113) ~[securejarhandler-2. 1. 10. jar:?] {} 86at cpw. mods. cl. ModuleClassLoader. lambda$findClass$15(ModuleClassLoader. java:219) ~[securejarhandler-2. 1. 10. jar:?] {} 87at cpw. mods. cl. ModuleClassLoader. loadFromModule(ModuleClassLoader. java:229) ~[securejarhandler-2. 1. 10. jar:?] {} 88at cpw. mods. cl. ModuleClassLoader. findClass(ModuleClassLoader. java:219) ~[securejarhandler-2. 1. 10. jar:?] {} 89at cpw. mods. cl. ModuleClassLoader. loadClass(ModuleClassLoader. java:135) ~[securejarhandler-2. 1. 10. jar:?] {} 90at java. lang. ClassLoader. loadClass(ClassLoader. java:525) ~[?:?] {} 91at net. minecraft. core. GlobalPos. m_122641_(GlobalPos. java:11) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, re:classloading} 92at com. mojang. serialization. codecs. RecordCodecBuilder. create(RecordCodecBuilder. java:72) ~[datafixerupper-6. 0. 8. jar%23111!/:?] {} 93at net. minecraft. core. GlobalPos. (GlobalPos. java:11) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, re:classloading} 94at net. minecraft. world. entity. ai. memory. MemoryModuleType. (MemoryModuleType. java:32) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading, pl:accesstransformer:B, re:mixin, pl:accesstransformer:B} 95at net. minecraft. world. entity. animal. frog. Tadpole. (TadpoleMixin. java:53) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, pl:accesstransformer:B, xf:fml:forge:forge_method_redirector, re:classloading, pl:accesstransformer:B, xf:fml:forge:forge_method_redirector, pl:mixin:APP:mixins. arclight. core. json:world. entity. animal. frog. TadpoleMixin, pl:mixin:A} 96at net. minecraft. world. entity. EntityType. (EntityTypeMixin. java:267) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, xf:fml:forge:forge_method_redirector, re:classloading, xf:fml:forge:forge_method_redirector, pl:mixin:APP:mixins. arclight. core. json:world. entity. EntityTypeMixin, pl:mixin:A} 97at net. minecraft. world. item. Items. (Items. java:754) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, pl:object_holder_definalize:A, re:classloading, pl:object_holder_definalize:A} 98at net. minecraft. world. level. block. ComposterBlock. m_51988_(ComposterBlockMixin. java:60) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, pl:accesstransformer:B, re:classloading, pl:accesstransformer:B, pl:mixin:APP:mixins. arclight. core. json:world. level. block. ComposterBlockMixin, pl:mixin:A} 99at net. minecraft. server. Bootstrap. m_135870_(BootstrapMixin. java:47) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, re:classloading, pl:mixin:APP:mixins. arclight. core. json:server. BootstrapMixin, pl:mixin:A} 100at net. minecraft. server. Main. main(Main. java:121) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, pl:accesstransformer:B, re:classloading, pl:accesstransformer:B, pl:mixin:A} 101at jdk. internal. reflect. NativeMethodAccessorImpl. invoke0(Native Method) ~[?:?] {} 102at jdk. internal. reflect. NativeMethodAccessorImpl. invoke(NativeMethodAccessorImpl. java:77) ~[?:?] {} 103at jdk. internal. reflect. DelegatingMethodAccessorImpl. invoke(DelegatingMethodAccessorImpl. java:43) ~[?:?] {} 104at java. lang. reflect. Method. invoke(Method. java:569) ~[?:?] {} 105at net. minecraftforge. fml. loading. targets. CommonLaunchHandler. runTarget(CommonLaunchHandler. java:111) ~[fmlloader-1. 20. 1-47. 3. 22. jar%23103!/:?] {} 106at net. minecraftforge. fml. loading. targets. CommonLaunchHandler. serverService(CommonLaunchHandler. java:103) ~[fmlloader-1. 20. 1-47. 3. 22. jar%23103!/:?] {} 107at net. minecraftforge. fml. loading. targets. CommonServerLaunchHandler. lambda$makeService$0(CommonServerLaunchHandler. java:27) ~[fmlloader-1. 20. 1-47. 3. 22. jar%23103!/:?] {} 108at cpw. mods. modlauncher. LaunchServiceHandlerDecorator. launch(LaunchServiceHandlerDecorator. java:30) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 109at cpw. mods. modlauncher. LaunchServiceHandler. launch(LaunchServiceHandler. java:53) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 110at cpw. mods. modlauncher. LaunchServiceHandler. launch(LaunchServiceHandler. java:71) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 111at cpw. mods. modlauncher. Launcher. run(Launcher. java:108) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 112at cpw. mods. modlauncher. Launcher. main(Launcher. java:78) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 113at cpw. mods. modlauncher. BootstrapLaunchConsumer. accept(BootstrapLaunchConsumer. java:26) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 114at cpw. mods. modlauncher. BootstrapLaunchConsumer. accept(BootstrapLaunchConsumer. java:23) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 115at io. izzel. arclight. boot. application. ApplicationBootstrap. accept(ApplicationBootstrap. java:46) ~[arclight. jar:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 116at jdk. internal. reflect. NativeMethodAccessorImpl. invoke0(Native Method) ~[?:?] {} 117at jdk. internal. reflect. NativeMethodAccessorImpl. invoke(NativeMethodAccessorImpl. java:77) ~[?:?] {} 118at jdk. internal. reflect. DelegatingMethodAccessorImpl. invoke(DelegatingMethodAccessorImpl. java:43) ~[?:?] {} 119at java. lang. reflect. Method. invoke(Method. java:569) ~[?:?] {} 120at io. izzel. arclight. boot. application. BootstrapTransformer. onInvoke$BootstrapLauncher(BootstrapTransformer. java:26) ~[arclight. jar:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 121at cpw. mods. bootstraplauncher. BootstrapLauncher. main(BootstrapLauncher. java:141) ~[bootstraplauncher-1. 1. 2. jar:?] {} 122at jdk. internal. reflect. NativeMethodAccessorImpl. invoke0(Native Method) ~[?:?] {} 123at jdk. internal. reflect. NativeMethodAccessorImpl. invoke(NativeMethodAccessorImpl. java:77) ~[?:?] {} 124at jdk. internal. reflect. DelegatingMethodAccessorImpl. invoke(DelegatingMethodAccessorImpl. java:43) ~[?:?] {} 125at java. lang. reflect. Method. invoke(Method. java:569) ~[?:?] {} 126at io. izzel. arclight. boot. application. Main_Forge. main(Main_Forge. java:33) ~[arclight. jar%2383!/:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 127at io. izzel. arclight. server. Launcher. main(Launcher. java:18) ~[arclight. jar%2383!/:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 128[30Jan2025 13:42:21. 327] [main/WARN] [mixin/]: @Inject(@At("INVOKE_ASSIGN")) Shift. BY=2 on refurbished_furniture. common. mixins. json:LevelChunkMixin::handler$zjk000$refurbishedFurniture$AfterRemoveBlockEntity exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning. 129[30Jan2025 13:42:22. 457] [main/WARN] [mixin/]: Mixin alexscaves. mixins. json:SwampHutPieceMixin has multiple constructors, (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; IIIIIILnet/minecraft/core/Direction; )V was selected 130 131[30Jan2025 13:42:22. 601] [main/ERROR] [net. minecraftforge. coremod. transformer. CoreModBaseTransformer/COREMOD]: Error occurred applying transform of coremod coremods/field_to_method. js function biome 132java. lang. IllegalStateException: Field f_47437_ is not private and an instance field 133at net. minecraftforge. coremod. api. ASMAPI. redirectFieldToMethod(ASMAPI. java:1069) ~[coremods-5. 2. 4. jar%2388!/:?] {} 134at org. openjdk. nashorn. internal. scripts. Script$Recompilation$22$292A$\^eval\_. initializeCoreMod#transformer(:11) ~[?:?] {} 135at org. openjdk. nashorn. internal. runtime. ScriptFunctionData. invoke(ScriptFunctionData. java:648) ~[nashorn-core-15. 4. jar%23100!/:?] {} 136at org. openjdk. nashorn. internal. runtime. ScriptFunction. invoke(ScriptFunction. java:513) ~[nashorn-core-15. 4. jar%23100!/:?] {} 137at org. openjdk. nashorn. internal. runtime. ScriptRuntime. apply(ScriptRuntime. java:520) ~[nashorn-core-15. 4. jar%23100!/:?] {} 138at org. openjdk. nashorn. api. scripting. ScriptObjectMirror. call(ScriptObjectMirror. java:111) ~[nashorn-core-15. 4. jar%23100!/:?] {} 139at net. minecraftforge. coremod. NashornFactory. lambda$getFunction$0(NashornFactory. java:37) ~[coremods-5. 2. 4. jar%2388!/:5. 2. 4] {} 140at net. minecraftforge. coremod. transformer. CoreModClassTransformer. runCoremod(CoreModClassTransformer. java:22) ~[coremods-5. 2. 4. jar%2388!/:?] {} 141at net. minecraftforge. coremod. transformer. CoreModClassTransformer. runCoremod(CoreModClassTransformer. java:14) ~[coremods-5. 2. 4. jar%2388!/:?] {} 142at net. minecraftforge. coremod. transformer. CoreModBaseTransformer. transform(CoreModBaseTransformer. java:60) ~[coremods-5. 2. 4. jar%2388!/:?] {} 143at cpw. mods. modlauncher. TransformerHolder. transform(TransformerHolder. java:41) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 144at cpw. mods. modlauncher. ClassTransformer. performVote(ClassTransformer. java:179) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 145at cpw. mods. modlauncher. ClassTransformer. transform(ClassTransformer. java:117) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 146at cpw. mods. modlauncher. TransformingClassLoader. maybeTransformClassBytes(TransformingClassLoader. java:50) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 147at cpw. mods. cl. ModuleClassLoader. readerToClass(ModuleClassLoader. java:113) ~[securejarhandler-2. 1. 10. jar:?] {} 148at cpw. mods. cl. ModuleClassLoader. lambda$findClass$15(ModuleClassLoader. java:219) ~[securejarhandler-2. 1. 10. jar:?] {} 149at cpw. mods. cl. ModuleClassLoader. loadFromModule(ModuleClassLoader. java:229) ~[securejarhandler-2. 1. 10. jar:?] {} 150at cpw. mods. cl. ModuleClassLoader. findClass(ModuleClassLoader. java:219) ~[securejarhandler-2. 1. 10. jar:?] {} 151at cpw. mods. cl. ModuleClassLoader. loadClass(ModuleClassLoader. java:135) ~[securejarhandler-2. 1. 10. jar:?] {} 152at java. lang. ClassLoader. loadClass(ClassLoader. java:525) ~[?:?] {} 153at net. minecraft. world. level. biome. FixedBiomeSource. (FixedBiomeSource. java:17) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading} 154at net. minecraft. world. level. biome. BiomeSources. m_220586_(BiomeSources. java:8) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading} 155at net. minecraft. core. registries. BuiltInRegistries. m_258029_(BuiltInRegistries. java:448) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading, re:mixin} 156at net. minecraft. core. registries. BuiltInRegistries. m_258037_(BuiltInRegistries. java:462) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading, re:mixin} 157at java. util. LinkedHashMap. forEach(LinkedHashMap. java:721) ~[?:?] {} 158at net. minecraft. core. registries. BuiltInRegistries. m_257453_(BuiltInRegistries. java:461) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading, re:mixin} 159at net. minecraft. core. registries. BuiltInRegistries. m_257498_(BuiltInRegistries. java:455) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:classloading, re:mixin} 160at net. minecraft. server. Bootstrap. m_135870_(BootstrapMixin. java:55) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, re:classloading, pl:mixin:APP:mixins. arclight. core. json:server. BootstrapMixin, pl:mixin:A} 161at net. minecraft. server. Main. main(Main. java:121) ~[server-1. 20. 1-20230612. 114412-srg. jar%23247!/:?] {re:mixin, pl:accesstransformer:B, re:classloading, pl:accesstransformer:B, pl:mixin:A} 162at jdk. internal. reflect. NativeMethodAccessorImpl. invoke0(Native Method) ~[?:?] {} 163at jdk. internal. reflect. NativeMethodAccessorImpl. invoke(NativeMethodAccessorImpl. java:77) ~[?:?] {} 164at jdk. internal. reflect. DelegatingMethodAccessorImpl. invoke(DelegatingMethodAccessorImpl. java:43) ~[?:?] {} 165at java. lang. reflect. Method. invoke(Method. java:569) ~[?:?] {} 166at net. minecraftforge. fml. loading. targets. CommonLaunchHandler. runTarget(CommonLaunchHandler. java:111) ~[fmlloader-1. 20. 1-47. 3. 22. jar%23103!/:?] {} 167at net. minecraftforge. fml. loading. targets. CommonLaunchHandler. serverService(CommonLaunchHandler. java:103) ~[fmlloader-1. 20. 1-47. 3. 22. jar%23103!/:?] {} 168at net. minecraftforge. fml. loading. targets. CommonServerLaunchHandler. lambda$makeService$0(CommonServerLaunchHandler. java:27) ~[fmlloader-1. 20. 1-47. 3. 22. jar%23103!/:?] {} 169at cpw. mods. modlauncher. LaunchServiceHandlerDecorator. launch(LaunchServiceHandlerDecorator. java:30) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 170at cpw. mods. modlauncher. LaunchServiceHandler. launch(LaunchServiceHandler. java:53) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 171at cpw. mods. modlauncher. LaunchServiceHandler. launch(LaunchServiceHandler. java:71) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 172at cpw. mods. modlauncher. Launcher. run(Launcher. java:108) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 173at cpw. mods. modlauncher. Launcher. main(Launcher. java:78) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 174at cpw. mods. modlauncher. BootstrapLaunchConsumer. accept(BootstrapLaunchConsumer. java:26) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 175at cpw. mods. modlauncher. BootstrapLaunchConsumer. accept(BootstrapLaunchConsumer. java:23) ~[modlauncher-10. 0. 9. jar%2389!/:?] {} 176at io. izzel. arclight. boot. application. ApplicationBootstrap. accept(ApplicationBootstrap. java:46) ~[arclight. jar:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 177at jdk. internal. reflect. NativeMethodAccessorImpl. invoke0(Native Method) ~[?:?] {} 178at jdk. internal. reflect. NativeMethodAccessorImpl. invoke(NativeMethodAccessorImpl. java:77) ~[?:?] {} 179at jdk. internal. reflect. DelegatingMethodAccessorImpl. invoke(DelegatingMethodAccessorImpl. java:43) ~[?:?] {} 180at java. lang. reflect. Method. invoke(Method. java:569) ~[?:?] {} 181at io. izzel. arclight. boot. application. BootstrapTransformer. onInvoke$BootstrapLauncher(BootstrapTransformer. java:26) ~[arclight. jar:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 182at cpw. mods. bootstraplauncher. BootstrapLauncher. main(BootstrapLauncher. java:141) ~[bootstraplauncher-1. 1. 2. jar:?] {} 183at jdk. internal. reflect. NativeMethodAccessorImpl. invoke0(Native Method) ~[?:?] {} 184at jdk. internal. reflect. NativeMethodAccessorImpl. invoke(NativeMethodAccessorImpl. java:77) ~[?:?] {} 185at jdk. internal. reflect. DelegatingMethodAccessorImpl. invoke(DelegatingMethodAccessorImpl. java:43) ~[?:?] {} 186at java. lang. reflect. Method. invoke(Method. java:569) ~[?:?] {} 187at io. izzel. arclight. boot. application. Main_Forge. main(Main_Forge. java:33) ~[arclight. jar%2383!/:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {} 188at io. izzel. arclight. server. Launcher. main(Launcher. java:18) ~[arclight. jar%2383!/:arclight-1. 20. 1-1. 0. 6-SNAPSHOT-c1e6367] {}
    • Welp, It doesn't crash but for some reason I broke pickaxes. They just wont work. The game behaves as if my hand was empty. Wtf is going on
    • Oh yeah, dammit. There's the duplicate mod. It works now
  • Topics

×
×
  • Create New...

Important Information

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