Jump to content

{1.12.2} Issues with moving item entities (EntityItem)


ZombieEnderman5

Recommended Posts

I'm trying to make an axe have a 1/3 chance to forcefully move the item dropped from the destroyed block to the entity mining the block. DISCLAIMER: This is not my mod! I'm collaborating on a mod of someone else's. My code is as follows (this is the entire class):

package gatocreador887.greenvoidislands.common.item;

import java.util.List;
import java.util.Random;

import javax.annotation.Nullable;

import gatocreador887.greenvoidislands.GreenVoidIslands;
import gatocreador887.greenvoidislands.common.block.GVIGenericBlock;
import gatocreador887.greenvoidislands.common.block.GVILogBlock;
import gatocreador887.greenvoidislands.common.core.GVIItemManager;
import net.minecraft.block.state.IBlockState;
import net.minecraft.client.util.ITooltipFlag;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.item.ItemStack;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.Vec3d;
import net.minecraft.util.text.translation.I18n;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

public class ItemFloatstoneAxe extends ItemGVIAxe {

	public ItemFloatstoneAxe() {
		
		super(GVIItemManager.FLOATSTONE_TOOL_MATERIAL, 8.0F, -3.1F, 0, false);
		
	}

	@Override
	public boolean hitEntity(ItemStack stack, EntityLivingBase target, EntityLivingBase attacker) {
		
		Random random = target.getRNG();
		
		super.hitEntity(stack, target, attacker);
		
		if (random.nextInt(3) == 0) {
			
			target.motionY = 0.63F;
			
		}
		
		return true;
		
	}
	
	@Override
	public boolean onBlockDestroyed(ItemStack stack, World worldIn, IBlockState state, BlockPos pos, EntityLivingBase entityLiving) {
		
		Random random = entityLiving.getRNG();
		
        if ((double)state.getBlockHardness(worldIn, pos) != 0.0D) {
            stack.damageItem(1, entityLiving);
        }
        
        if (!worldIn.isRemote && /*random.nextInt(3) == 0*/ true && (state.getBlock() instanceof GVIGenericBlock || state.getBlock() instanceof GVILogBlock)) {
        	if (state.getBlock() instanceof GVIGenericBlock) {
        		if (((GVIGenericBlock) state.getBlock()).itemEntities != null && !((GVIGenericBlock) state.getBlock()).itemEntities.isEmpty()) {
        			for (EntityItem itemEntity : ((GVIGenericBlock) state.getBlock()).itemEntities) {
        				if (itemEntity.getItem().getCount() > 1 || itemEntity.getItem().getCount() < 1) {
        					itemEntity.getItem().setCount(1);
        				}
        				/*Vec3d entityLivingPos = entityLiving.getPositionVector();
        				Vec3d itemEntityPos = itemEntity.getPositionVector();
        				Vec3d direction = itemEntityPos.subtract(entityLivingPos).normalize();
        				float distance = itemEntity.getDistance(entityLiving);
        				distance *= 6.0F;
        				direction = direction.scale(distance);
        				itemEntity.motionX = direction.x;
        				itemEntity.motionY = direction.y;
        				itemEntity.motionZ = direction.z;
        				itemEntity.isAirBorne = true;*/
        				GreenVoidIslands.logger.info("debug: itementity posx was " + itemEntity.posX);
        				GreenVoidIslands.logger.info("debug: itementity posy was " + itemEntity.posY);
        				GreenVoidIslands.logger.info("debug: itementity posz was " + itemEntity.posZ);
        				itemEntity.setPosition(entityLiving.posX, entityLiving.posY, entityLiving.posZ); //This is probably very cheaty
        				GreenVoidIslands.logger.info("debug: itementity posx is " + itemEntity.posX);
        				GreenVoidIslands.logger.info("debug: itementity posy is " + itemEntity.posY);
        				GreenVoidIslands.logger.info("debug: itementity posz is " + itemEntity.posZ);
        				GreenVoidIslands.logger.info("Spawned item entity moved successfully!");
                	}
        		}
        	}
        	if (state.getBlock() instanceof GVILogBlock) {
        		if (((GVILogBlock) state.getBlock()).itemEntities != null && !((GVILogBlock) state.getBlock()).itemEntities.isEmpty()) {
        			for (EntityItem itemEntity : ((GVILogBlock) state.getBlock()).itemEntities) {
        				if (itemEntity.getItem().getCount() > 1 || itemEntity.getItem().getCount() < 1) {
        					itemEntity.getItem().setCount(1);
        				}
        				Vec3d entityLivingPos = entityLiving.getPositionVector();
        				Vec3d itemEntityPos = entityLiving.getPositionVector();
        				Vec3d direction = itemEntityPos.subtract(entityLivingPos).normalize();
        				float distance = itemEntity.getDistance(entityLiving);
        				direction.scale(distance);
        				itemEntity.setVelocity(direction.x, direction.y, direction.z);
                	}
        		}
        	}
        }

        return true;
    }
	
	@Override
	@SideOnly(Side.CLIENT)
    public void addInformation(ItemStack stack, @Nullable World worldIn, List<String> tooltip, ITooltipFlag flagIn) {
		
		tooltip.add(I18n.translateToLocal("greenvoidislands.floatstone.melee_tool.information"));
		tooltip.add(I18n.translateToLocal("greenvoidislands.floatstone.harvesting_tool.information"));
		
	}
	
}

Only updated the GVIGenericBlock if set so far. My problem is that the item code you see in the GVIGenericBlock set of ifs doesn't actually move the item at all, even though the logs say the item was moved. The code in the GVILogBlock set of ifs is outdated as I haven't gotten around to updating it yet. Console logs from the last time I ran Minecraft in my development environment with this exact code:

2019-03-21 18:40:12,978 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2019-03-21 18:40:12,986 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[18:40:13] [main/INFO] [GradleStart]: username: ZombieEnderman5
[18:40:13] [main/INFO] [GradleStart]: Extra: [--uuid=beec8811-352f-4982-941d-5138ff7df927]
[18:40:13] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/****/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12.2, --username, ZombieEnderman5, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --uuid=beec8811-352f-4982-941d-5138ff7df927, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[18:40:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[18:40:13] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[18:40:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[18:40:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[18:40:13] [main/INFO] [FML]: Forge Mod Loader version 14.23.2.2611 for Minecraft 1.12.2 loading
[18:40:13] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_91, running on Windows 8:amd64:6.2, installed at C:\Program Files\Java\jre1.8.0_91
[18:40:13] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[18:40:13] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin
[18:40:13] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin
[18:40:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[18:40:13] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[18:40:13] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[18:40:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:40:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[18:40:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[18:40:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:40:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[18:40:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
2019-03-21 18:40:14,722 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2019-03-21 18:40:15,679 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2019-03-21 18:40:15,682 main WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[18:40:18] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[18:40:18] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[18:40:18] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[18:40:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[18:40:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[18:40:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[18:40:20] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[18:40:22] [main/INFO]: Setting user: ZombieEnderman5
[18:40:34] [main/WARN]: Skipping bad option: lastServer:
[18:40:34] [main/INFO]: LWJGL Version: 2.9.4
[18:40:39] [main/INFO] [FML]: -- System Details --
Details:
	Minecraft Version: 1.12.2
	Operating System: Windows 8 (amd64) version 6.2
	Java Version: 1.8.0_91, Oracle Corporation
	Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
	Memory: 761481152 bytes (726 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
	JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
	FML: 
	Loaded coremods (and transformers): 
	GL info: ' Vendor: 'Intel' Version: '4.0.0 - Build 9.17.10.2867' Renderer: 'Intel(R) HD Graphics 4000'
[18:40:39] [main/INFO] [FML]: MinecraftForge v14.23.2.2611 Initialized
[18:40:39] [main/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[18:40:39] [main/INFO] [FML]: Replaced 1036 ore ingredients
[18:40:40] [main/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[18:40:40] [main/INFO] [FML]: Searching C:\Users\****\Documents\GitHub\GreenVoidIslands\run\mods for mods
[18:40:42] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 144554049 nanos
[18:40:46] [main/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[18:40:47] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, greenvoidislands] at CLIENT
[18:40:47] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, greenvoidislands] at SERVER
[18:40:49] [main/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Green Void Islands, BDcraft Musics MC111.zip
[18:40:50] [main/INFO] [FML]: Processing ObjectHolder annotations
[18:40:50] [main/INFO] [FML]: Found 1168 ObjectHolder annotations
[18:40:50] [main/INFO] [FML]: Identifying ItemStackHolder annotations
[18:40:50] [main/INFO] [FML]: Found 0 ItemStackHolder annotations
[18:40:51] [main/INFO] [FML]: Configured a dormant chunk cache size of 0
[18:40:51] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[18:40:51] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Found status: OUTDATED Target: 14.23.5.2768
[18:40:51] [main/INFO] [FML]: Applying holder lookups
[18:40:51] [main/INFO] [FML]: Holder lookups applied
[18:40:51] [main/INFO] [FML]: Applying holder lookups
[18:40:51] [main/INFO] [FML]: Holder lookups applied
[18:40:51] [main/INFO] [FML]: Applying holder lookups
[18:40:51] [main/INFO] [FML]: Holder lookups applied
[18:40:52] [main/INFO] [FML]: Applying holder lookups
[18:40:52] [main/INFO] [FML]: Holder lookups applied
[18:40:52] [main/INFO] [FML]: Injecting itemstacks
[18:40:52] [main/INFO] [FML]: Itemstack injection complete
[18:41:20] [Sound Library Loader/INFO]: Starting up SoundSystem...
[18:41:21] [Thread-5/INFO]: Initializing LWJGL OpenAL
[18:41:21] [Thread-5/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[18:41:21] [Thread-5/INFO]: OpenAL initialized.
[18:41:21] [Sound Library Loader/INFO]: Sound engine started
[18:41:32] [main/INFO] [FML]: Max texture size: 8192
[18:41:34] [main/INFO]: Created: 512x512 textures-atlas
[18:41:39] [main/ERROR] [FML]: Exception loading model for variant greenvoidislands:shronk#inventory for item "greenvoidislands:shronk", normal location exception: 
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model greenvoidislands:item/shronk with loader VanillaLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:314) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:164) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: java.io.FileNotFoundException: greenvoidislands:models/item/shronk.json
	at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:69) ~[FallbackResourceManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.access$1600(ModelLoader.java:130) ~[ModelLoader.class:?]
	at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:880) ~[ModelLoader$VanillaLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
	... 20 more
[18:41:39] [main/ERROR] [FML]: Exception loading model for variant greenvoidislands:shronk#inventory for item "greenvoidislands:shronk", blockstate location exception: 
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model greenvoidislands:shronk#inventory with loader VariantLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:322) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:164) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
	at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?]
	at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1189) ~[ModelLoader$VariantLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
	... 20 more
[18:41:39] [main/ERROR] [FML]: Exception loading model for variant minecraft:air#inventory for item "minecraft:air", normal location exception: 
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model minecraft:item/air with loader VanillaLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:314) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:164) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: java.io.FileNotFoundException: minecraft:models/item/air.json
	at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:69) ~[FallbackResourceManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.access$1600(ModelLoader.java:130) ~[ModelLoader.class:?]
	at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:880) ~[ModelLoader$VanillaLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
	... 20 more
[18:41:39] [main/ERROR] [FML]: Exception loading model for variant minecraft:air#inventory for item "minecraft:air", blockstate location exception: 
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model minecraft:air#inventory with loader VariantLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:322) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:164) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
	at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?]
	at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1189) ~[ModelLoader$VariantLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
	... 20 more
[18:41:39] [main/ERROR] [FML]: Exception loading model for variant greenvoidislands:double_tall_island_grass#facing=west,half=lower,variant=double_fern for blockstate "greenvoidislands:double_tall_island_grass[facing=west,half=lower,variant=double_fern]"
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model greenvoidislands:double_tall_island_grass#facing=west,half=lower,variant=double_fern with loader VariantLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:248) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:236) ~[ModelLoader.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:163) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
	at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?]
	at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1189) ~[ModelLoader$VariantLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
	... 21 more
[18:41:39] [main/ERROR] [FML]: Exception loading model for variant greenvoidislands:island_cobblestone_furnace_lit#facing=east for blockstate "greenvoidislands:island_cobblestone_furnace_lit[facing=east]"
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model greenvoidislands:island_cobblestone_furnace_lit#facing=east with loader VariantLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:248) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:236) ~[ModelLoader.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:163) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model greenvoidislands:block/island_cobblestone_furnace-lit with loader VanillaLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader$WeightedRandomModel.<init>(ModelLoader.java:677) ~[ModelLoader$WeightedRandomModel.class:?]
	at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1190) ~[ModelLoader$VariantLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
	... 21 more
Caused by: java.io.FileNotFoundException: greenvoidislands:models/block/island_cobblestone_furnace-lit.json
	at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:69) ~[FallbackResourceManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.access$1600(ModelLoader.java:130) ~[ModelLoader.class:?]
	at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:880) ~[ModelLoader$VanillaLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader$WeightedRandomModel.<init>(ModelLoader.java:677) ~[ModelLoader$WeightedRandomModel.class:?]
	at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1190) ~[ModelLoader$VariantLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
	... 21 more
[18:41:39] [main/ERROR] [FML]: Exception loading model for variant greenvoidislands:double_tall_island_grass#facing=west,half=upper,variant=double_fern for blockstate "greenvoidislands:double_tall_island_grass[facing=west,half=upper,variant=double_fern]"
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model greenvoidislands:double_tall_island_grass#facing=west,half=upper,variant=double_fern with loader VariantLoader.INSTANCE, skipping
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
	at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:248) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?]
	at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:236) ~[ModelLoader.class:?]
	at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:163) ~[ModelLoader.class:?]
	at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?]
	at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?]
	at net.minecraft.client.Minecraft.init(Minecraft.java:559) [Minecraft.class:?]
	at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
	at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
	at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
	at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
	at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
	at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
	at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?]
	at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1189) ~[ModelLoader$VariantLoader.class:?]
	at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
	... 21 more
[18:41:39] [main/FATAL] [FML]: Suppressed additional 7 model loading errors for domain greenvoidislands
[18:41:43] [main/INFO] [FML]: Applying holder lookups
[18:41:43] [main/INFO] [FML]: Holder lookups applied
[18:41:43] [main/INFO] [FML]: Injecting itemstacks
[18:41:43] [main/INFO] [FML]: Itemstack injection complete
[18:41:43] [main/WARN] [FML]: No types have been added to Biome greenvoidislands:plains_island, types have been assigned on a best-effort guess: [DRY, PLAINS]
[18:41:43] [main/WARN] [FML]: No types have been added to Biome greenvoidislands:barren_island, types have been assigned on a best-effort guess: [DRY, PLAINS]
[18:41:43] [main/WARN] [FML]: No types have been added to Biome greenvoidislands:forest_island, types have been assigned on a best-effort guess: [FOREST, DRY, DENSE]
[18:41:43] [main/WARN] [FML]: No types have been added to Biome greenvoidislands:rocky_island, types have been assigned on a best-effort guess: [DRY, PLAINS]
[18:41:43] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
[18:41:43] [main/WARN]: Skipping bad option: lastServer:
[18:41:44] [main/INFO]: Narrator library for x64 successfully loaded
[18:41:44] [main/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[18:41:44] [main/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[18:41:44] [main/ERROR] [TEXTURE ERRORS]: ==================================================
[18:41:44] [main/ERROR] [TEXTURE ERRORS]:   DOMAIN greenvoidislands
[18:41:44] [main/ERROR] [TEXTURE ERRORS]: --------------------------------------------------
[18:41:44] [main/ERROR] [TEXTURE ERRORS]:   domain greenvoidislands is missing 1 texture
[18:41:44] [main/ERROR] [TEXTURE ERRORS]:     domain greenvoidislands has 1 location:
[18:41:44] [main/ERROR] [TEXTURE ERRORS]:       mod greenvoidislands resources at C:\Users\****\Documents\GitHub\GreenVoidIslands\bin
[18:41:44] [main/ERROR] [TEXTURE ERRORS]: -------------------------
[18:41:44] [main/ERROR] [TEXTURE ERRORS]:     The missing resources for domain greenvoidislands are:
[18:41:44] [main/ERROR] [TEXTURE ERRORS]:       textures/items/compressed_leaves.png
[18:41:44] [main/ERROR] [TEXTURE ERRORS]: -------------------------
[18:41:44] [main/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain greenvoidislands
[18:41:44] [main/ERROR] [TEXTURE ERRORS]: ==================================================
[18:41:44] [main/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[18:41:48] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
[18:44:18] [Server thread/INFO]: Starting integrated minecraft server version 1.12.2
[18:44:18] [Server thread/INFO]: Generating keypair
[18:44:19] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance
[18:44:20] [Server thread/INFO] [FML]: Applying holder lookups
[18:44:20] [Server thread/INFO] [FML]: Holder lookups applied
[18:44:20] [Server thread/INFO] [FML]: Loading dimension 0 (Floating Items) (net.minecraft.server.integrated.IntegratedServer@5ee9ba51)
[18:44:23] [Server thread/INFO]: Loaded 526 advancements
[18:44:23] [Server thread/INFO] [FML]: Loading dimension 7 (Floating Items) (net.minecraft.server.integrated.IntegratedServer@5ee9ba51)
[18:44:23] [Server thread/INFO] [FML]: Loading dimension 1 (Floating Items) (net.minecraft.server.integrated.IntegratedServer@5ee9ba51)
[18:44:23] [Server thread/INFO] [FML]: Loading dimension -1 (Floating Items) (net.minecraft.server.integrated.IntegratedServer@5ee9ba51)
[18:44:23] [Server thread/INFO]: Preparing start region for level 0
[18:44:25] [Server thread/INFO]: Preparing spawn area: 0%
[18:44:26] [Server thread/INFO]: Preparing spawn area: 18%
[18:44:27] [Server thread/INFO]: Preparing spawn area: 40%
[18:44:28] [Server thread/INFO]: Preparing spawn area: 79%
[18:44:30] [Server thread/INFO]: Changing view distance to 8, from 10
[18:44:36] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[18:44:36] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[18:44:36] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : minecraft@1.12.2,FML@8.0.99.99,forge@14.23.2.2611,greenvoidislands@1.0.0,mcp@9.42
[18:44:36] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[18:44:36] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[18:44:36] [Server thread/INFO]: ZombieEnderman5[local:E:207ffe68] logged in with entity id 145 at (-30.65413080546341, 67.0, 162.484520856128)
[18:44:36] [Server thread/INFO]: ZombieEnderman5 joined the game
[18:44:39] [Server thread/INFO]: Saving and pausing game...
[18:44:39] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld
[18:44:40] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether
[18:44:40] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end
[18:44:40] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands
[18:44:40] [main/INFO]: Loaded 9 advancements
[18:44:42] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3969ms behind, skipping 79 tick(s)
[18:44:42] [Server thread/INFO]: Saving and pausing game...
[18:44:42] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld
[18:44:42] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether
[18:44:43] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end
[18:44:43] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands
[18:46:51] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -25.942633281189817
[18:46:51] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:46:51] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 161.8751119336159
[18:46:51] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.333401490133735
[18:46:51] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:46:51] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.4511606362201
[18:46:51] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.333401490133735
[18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.4511606362201
[18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.181119488692197
[18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5890942671841
[18:46:56] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -25.145797974538212
[18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 66.0
[18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 161.00572107761818
[18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.181119488692197
[18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:46:56] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5890942671841
[18:46:56] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.181119488692197
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5890942671841
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.062190978878572
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.69111955231762
[18:47:00] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.181119488692197
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5890942671841
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.062190978878572
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.69111955231762
[18:47:00] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -25.467391732924025
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 66.0
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 161.67473200436848
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.062190978878572
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:47:00] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.69111955231762
[18:47:00] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.062190978878572
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.69111955231762
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.13824294056101
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.40400621127398
[18:47:04] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.062190978878572
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.69111955231762
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.13824294056101
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.40400621127398
[18:47:04] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.062190978878572
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.69111955231762
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.13824294056101
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.40400621127398
[18:47:04] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -25.394860709803904
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 66.0
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 160.9137306426926
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.13824294056101
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:47:04] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.40400621127398
[18:47:04] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.13824294056101
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.40400621127398
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -29.722584182037792
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56385336205645
[18:47:07] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.13824294056101
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.40400621127398
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -29.722584182037792
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56385336205645
[18:47:07] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.13824294056101
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.40400621127398
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -29.722584182037792
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56385336205645
[18:47:07] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.13824294056101
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.40400621127398
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -29.722584182037792
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56385336205645
[18:47:07] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -24.98793677691712
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 66.0
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 160.90207045136654
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -29.722584182037792
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:47:07] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56385336205645
[18:47:07] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:47:10] [Server thread/INFO]: Saving and pausing game...
[18:47:10] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld
[18:47:10] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether
[18:47:11] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end
[18:47:11] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands
[18:49:56] [Server thread/INFO]: [ZombieEnderman5: Set the time to 0]
[18:49:56] [main/INFO]: [CHAT] Set the time to 0
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -29.722584182037792
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.56385336205645
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.234287244724197
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5596744205607
[18:50:01] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -29.722584182037792
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.56385336205645
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.234287244724197
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5596744205607
[18:50:01] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -29.722584182037792
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.56385336205645
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.234287244724197
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5596744205607
[18:50:01] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -29.722584182037792
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.56385336205645
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.234287244724197
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5596744205607
[18:50:01] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -29.722584182037792
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.56385336205645
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.234287244724197
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5596744205607
[18:50:01] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -26.238573623719613
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 66.0
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 160.943271969827
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.234287244724197
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:50:01] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.5596744205607
[18:50:01] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:50:05] [Server thread/INFO]: Saving and pausing game...
[18:50:05] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld
[18:50:05] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether
[18:50:05] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end
[18:50:05] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands
[18:50:14] [Server thread/INFO]: Saving and pausing game...
[18:50:14] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld
[18:50:15] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether
[18:50:15] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end
[18:50:15] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.234287244724197
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5596744205607
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938
[18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.234287244724197
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5596744205607
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938
[18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.234287244724197
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5596744205607
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938
[18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.234287244724197
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5596744205607
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938
[18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.234287244724197
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5596744205607
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938
[18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.234287244724197
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.5596744205607
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938
[18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -26.223893465845414
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.70867007228813
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.262908000884995
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:50:23] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.52226013786938
[18:50:23] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:50:31] [Server thread/INFO]: Saving and pausing game...
[18:50:31] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld
[18:50:31] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether
[18:50:31] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end
[18:50:31] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands
[18:51:08] [Server thread/INFO]: Saving and pausing game...
[18:51:08] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld
[18:51:08] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether
[18:51:08] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end
[18:51:08] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068
[18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068
[18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068
[18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068
[18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068
[18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068
[18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -30.262908000884995
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.52226013786938
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068
[18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx was -25.445517354197843
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy was 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz was 162.92295698643497
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posx is -30.370853396749663
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posy is 67.0
[18:51:13] [Server thread/INFO] [greenvoidislands]: debug: itementity posz is 162.56568116799068
[18:51:13] [Server thread/INFO] [greenvoidislands]: Spawned item entity moved successfully!
[18:51:14] [Server thread/INFO]: Saving and pausing game...
[18:51:14] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld
[18:51:14] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether
[18:51:14] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end
[18:51:14] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands
[18:51:33] [Server thread/INFO]: Saving and pausing game...
[18:51:33] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld
[18:51:33] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether
[18:51:33] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end
[18:51:33] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands
[18:55:03] [Server thread/INFO]: Stopping server
[18:55:03] [Server thread/INFO]: Saving players
[18:55:03] [Server thread/INFO]: ZombieEnderman5 lost connection: Disconnected
[18:55:03] [Server thread/INFO]: ZombieEnderman5 left the game
[18:55:03] [Server thread/INFO]: Stopping singleplayer server as player logged out
[18:55:03] [Server thread/INFO]: Saving worlds
[18:55:03] [Server thread/INFO]: Saving chunks for level 'Floating Items'/overworld
[18:55:03] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_nether
[18:55:03] [Server thread/INFO]: Saving chunks for level 'Floating Items'/the_end
[18:55:03] [Server thread/INFO]: Saving chunks for level 'Floating Items'/Green Void Islands
[18:55:03] [Server thread/INFO] [FML]: Unloading dimension 0
[18:55:03] [Server thread/INFO] [FML]: Unloading dimension -1
[18:55:03] [Server thread/INFO] [FML]: Unloading dimension 1
[18:55:03] [Server thread/INFO] [FML]: Unloading dimension 7
[18:55:03] [Server thread/INFO] [FML]: Applying holder lookups
[18:55:03] [Server thread/INFO] [FML]: Holder lookups applied
[18:55:05] [main/INFO]: Stopping!
[18:55:05] [main/INFO]: SoundSystem shutting down...
[18:55:06] [main/WARN]: Author: Paul Lamb, www.paulscode.com
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release

My computer user name has been censored, but one thing to note: The model errors are irrelevant right now. Why exactly the item doesn't move despite console logs indicating it did, I have no idea; if I knew, I wouldn't be asking for help. I hope you still support 1.12.2. (I have absolutely no idea why Forge decided to spit out a model error regarding minecraft:air.) The method also seems to be called seven times, for whatever reason (meaning the destroy block method).

Edited by ZombieEnderman5
Clarification
Link to comment
Share on other sites

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)

Link to comment
Share on other sites

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)

Link to comment
Share on other sites

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

    • Hello, I want to add more memory to the RunClient gradle task. I added VM options into the configurations and put in "-Xms256m -Xmx2048m" but it doesn't work.
    • Hello, I'm trying to modify the effects of native enchantments for bows and arrows in Minecraft. After using a decompilation tool, I found that the specific implementations of native bow and arrow enchantments (including `ArrowDamageEnchantment`, `ArrowKnockbackEnchantment`, `ArrowFireEnchantment`, `ArrowInfiniteEnchantment`, `ArrowPiercingEnchantment`) do not contain any information about the enchantment effects (such as the `getDamageProtection` function for `ProtectionEnchantment`, `getDamageBonus` function for `DamageEnchantment`, etc.). Upon searching for the base class of arrows, `AbstractArrow`, I found a function named setEnchantmentEffectsFromEntity`, which seems to be used to retrieve the enchantment levels of the tool held by a `LivingEntity` and calculate the specific values of the enchantment effects. However, after testing with the following code, I found that this function is not being called:   @Mixin(AbstractArrow.class) public class ModifyArrowEnchantmentEffects {     private static final Logger LOGGER = LogUtils.getLogger();     @Inject(         method = "setEnchantmentEffectsFromEntity",         at = @At("HEAD")     )     private void logArrowEnchantmentEffectsFromEntity(CallbackInfo ci) {         LOGGER.info("Arrow enchantment effects from entity");     } }   Upon further investigation, I found that within the onHitEntity method, there are several lines of code:               if (!this.level().isClientSide &amp;&amp; entity1 instanceof LivingEntity) {                EnchantmentHelper.doPostHurtEffects(livingentity, entity1);                EnchantmentHelper.doPostDamageEffects((LivingEntity)entity1, livingentity);             }   These lines of code actually call the doPostHurt and doPostAttack methods of each enchantment in the enchantment list. However, this leads back to the issue because native bow and arrow enchantments do not implement these functions. Although their base class defines the functions, they are empty. At this point, I'm completely stumped and seeking assistance. Thank you.
    • I have been trying to make a server with forge but I keep running into an issue. I have jdk 22 installed as well as Java 8. here is the debug file  
    • it crashed again     What the console says : [00:02:03] [Server thread/INFO] [Easy NPC/]: [EntityManager] Server started! [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {iceandfire:fire_dragon_roost=true, iceandfire:fire_lily=true, iceandfire:spawn_dragon_skeleton_fire=true, iceandfire:lightning_dragon_roost=true, iceandfire:spawn_dragon_skeleton_lightning=true, iceandfire:ice_dragon_roost=true, iceandfire:ice_dragon_cave=true, iceandfire:lightning_dragon_cave=true, iceandfire:cyclops_cave=true, iceandfire:spawn_wandering_cyclops=true, iceandfire:spawn_sea_serpent=true, iceandfire:frost_lily=true, iceandfire:hydra_cave=true, iceandfire:lightning_lily=true, iceandfireixie_village=true, iceandfire:myrmex_hive_jungle=true, iceandfire:myrmex_hive_desert=true, iceandfire:silver_ore=true, iceandfire:siren_island=true, iceandfire:spawn_dragon_skeleton_ice=true, iceandfire:spawn_stymphalian_bird=true, iceandfire:fire_dragon_cave=true, iceandfire:sapphire_ore=true, iceandfire:spawn_hippocampus=true, iceandfire:spawn_death_worm=true} [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {TROLL_S=true, HIPPOGRYPH=true, AMPHITHERE=true, COCKATRICE=true, TROLL_M=true, DREAD_LICH=true, TROLL_F=true} [00:02:03] [Server thread/INFO] [ne.be.lo.WeaponRegistry/]: Encoded Weapon Attribute registry size (with package overhead): 41976 bytes (in 5 string chunks with the size of 10000) [00:02:03] [Server thread/INFO] [patchouli/]: Sending reload packet to clients [00:02:03] [Server thread/WARN] [voicechat/]: [voicechat] Running in offline mode - Voice chat encryption is not secure! [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Using server-ip as bind address: 0.0.0.0 [00:02:03] [Server thread/WARN] [ModernFix/]: Dedicated server took 22.521 seconds to load [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Voice chat server started at 0.0.0.0:25565 [00:02:03] [Server thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.player.Player from class tschipp.carryon.common.carry.CarryOnDataManager [00:02:03] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@2941ffd5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 0 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 1 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 2 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 3 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 4 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 6 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 7 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 8 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 9 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 10 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 11 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 12 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 13 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 14 [00:02:19] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@ebc7ef2 [00:02:19] [Server thread/INFO] [minecraft/PlayerList]: ZacAdos[/90.2.17.162:49242] logged in with entity id 1062 at (-1848.6727005281205, 221.0, -3054.2468255848935) [00:02:19] [Server thread/ERROR] [ModernFix/]: Skipping entity ID sync for com.talhanation.smallships.world.entity.ship.Ship: java.lang.NoClassDefFoundError: net/minecraft/client/CameraType [00:02:19] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos joined the game [00:02:19] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:19] [Server thread/INFO] [se.mi.te.da.DataManager/]: Sending data to client: ZacAdos [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Received secret request of - Gloop - ZacAdos (17) [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Sent secret to - Gloop - ZacAdos [00:02:21] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully authenticated player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully validated connection of player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Player - Gloop - ZacAdos (cc56befd-d376-3526-a760-340713c478bd) successfully connected to voice chat stop [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping the server [00:02:34] [Server thread/INFO] [mo.pl.ar.ArmourersWorkshop/]: stop local service [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players [00:02:34] [Server thread/INFO] [minecraft/ServerGamePacketListenerImpl]: ZacAdos lost connection: Server closed [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos left the game [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (world): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage: All dimensions are saved [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopping IO worker... [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopped IO worker! [00:02:34] [Server thread/INFO] [Calio/]: Removing Dynamic Registries for: net.minecraft.server.dedicated.DedicatedServer@7dc879e1 [MineStrator Daemon]: Checking server disk space usage, this could take a few seconds... [MineStrator Daemon]: Updating process configuration files... [MineStrator Daemon]: Ensuring file permissions are set correctly, this could take a few seconds... [MineStrator Daemon]: Pulling Docker container image, this could take a few minutes to complete... [MineStrator Daemon]: Finished pulling Docker container image container@pterodactyl~ java -version openjdk version "17.0.10" 2024-01-16 OpenJDK Runtime Environment Temurin-17.0.10+7 (build 17.0.10+7) OpenJDK 64-Bit Server VM Temurin-17.0.10+7 (build 17.0.10+7, mixed mode, sharing) container@pterodactyl~ java -Xms128M -Xmx6302M -Dterminal.jline=false -Dterminal.ansi=true -Djline.terminal=jline.UnsupportedTerminal -p libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar:libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules ALL-MODULE-PATH --add-opens java.base/java.util.jar=cpw.mods.securejarhandler --add-opens java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports java.base/sun.security.util=cpw.mods.securejarhandler --add-exports jdk.naming.dns/com.sun.jndi.dns=java.naming -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher-1.1.2.jar,securejarhandler-2.1.4.jar,asm-commons-9.5.jar,asm-util-9.5.jar,asm-analysis-9.5.jar,asm-tree-9.5.jar,asm-9.5.jar,JarJarFileSystems-0.3.16.jar -DlibraryDirectory=libraries -DlegacyClassPath=libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar:libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar:libraries/net/minecraftforge/eventbus/6.0.3/eventbus-6.0.3.jar:libraries/net/minecraftforge/forgespi/6.0.0/forgespi-6.0.0.jar:libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar:libraries/cpw/mods/modlauncher/10.0.8/modlauncher-10.0.8.jar:libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar:libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar:libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar:libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar:libraries/net/jodah/typetools/0.8.3/typetools-0.8.3.jar:libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar:libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar:libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar:libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar:libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar:libraries/net/minecraftforge/JarJarSelector/0.3.16/JarJarSelector-0.3.16.jar:libraries/net/minecraftforge/JarJarMetadata/0.3.16/JarJarMetadata-0.3.16.jar:libraries/net/minecraftforge/fmlloader/1.19.2-43.3.0/fmlloader-1.19.2-43.3.0.jar:libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-extra.jar:libraries/com/github/oshi/oshi-core/5.8.5/oshi-core-5.8.5.jar:libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar:libraries/com/mojang/authlib/3.11.49/authlib-3.11.49.jar:libraries/com/mojang/brigadier/1.0.18/brigadier-1.0.18.jar:libraries/com/mojang/datafixerupper/5.0.28/datafixerupper-5.0.28.jar:libraries/com/mojang/javabridge/1.2.24/javabridge-1.2.24.jar:libraries/com/mojang/logging/1.0.0/logging-1.0.0.jar:libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar:libraries/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar:libraries/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar:libraries/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar:libraries/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.jar:libraries/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar:libraries/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar:libraries/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar:libraries/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar:libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar:libraries/net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar:libraries/net/java/dev/jna/jna-platform/5.10.0/jna-platform-5.10.0.jar:libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar:libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:libraries/org/apache/logging/log4j/log4j-api/2.17.0/log4j-api-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-core/2.17.0/log4j-core-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-slf4j18-impl/2.17.0/log4j-slf4j18-impl-2.17.0.jar:libraries/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.jar cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeserver --fml.forgeVersion 43.3.0 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [00:02:43] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [00:02:44] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection Latest log [29Mar2024 00:02:42.803] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [29Mar2024 00:02:42.805] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [29Mar2024 00:02:43.548] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [29Mar2024 00:02:43.876] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.878] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:44.033] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [29Mar2024 00:02:44.034] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [29Mar2024 00:02:44.034] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection
  • Topics

×
×
  • Create New...

Important Information

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