Jump to content

LivingSpawnEvent gets called on mob even after the mob has already spawned


Recommended Posts

Posted

I have a simple code that makes some animals become babies on spawn. But using the LivingSpawnEvent event, all the animals become small after a while. Debugging (System.out.println()), i see it gets called on animals even after they have spawned.

 

Here's the simple event code:

@SubscribeEvent
public static void LivingSpawnEvent(LivingSpawnEvent event) {
	EntityLivingBase entity = event.getEntityLiving();

	//System.out.println("checking " + entity);

	if (!(entity instanceof EntityAgeable)) 
		return;
		
	EntityAgeable animal = (EntityAgeable)entity;
			
	if (animal.getGrowingAge() < 0)
		return;
		
	if (event.getWorld().rand.nextInt(100) < 50) {
		System.out.println("done to " + animal);
		int maxAge = 24000;
		int minAge = 6000;
		animal.setGrowingAge(-(animal.getEntityWorld().rand.nextInt(maxAge - minAge) + minAge));
	}
}

 

Posted (edited)
23 minutes ago, jabelar said:

LivingSpawnEvent is a parent event. It has three children including the AllowDespawn event, so it gets fired occasionally by entities in the world. Instead you should handle either the CheckSpawn or SpecialSpawn event.

CheckSpawn and SpecialSpawn doesn't work for animals (doesn't get called by an animal)

 

This is the log with System.out.println("checking " + entity); No animals are checked

Spoiler

[10:00:06] [Client thread/INFO]: Setting user: Player598
[10:00:11] [Client thread/INFO]: LWJGL Version: 2.9.4
[10:00:18] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Vulcanite, FMLFileResourcePack:Example Mod, FMLFileResourcePack:Golden Anvil, FMLFileResourcePack:Snow Accumulation, FMLFileResourcePack:Carbonado, FMLFileResourcePack:Galaxite, FMLFileResourcePack:Natural Baby Animals, FMLFileResourcePack:Just Enough Items
[10:00:48] [Sound Library Loader/INFO]: Starting up SoundSystem...
[10:00:48] [Thread-8/INFO]: Initializing LWJGL OpenAL
[10:00:48] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[10:00:48] [Thread-8/INFO]: OpenAL initialized.
[10:00:48] [Sound Library Loader/INFO]: Sound engine started
[10:00:55] [Client thread/INFO]: Created: 16x16 textures-atlas
[10:00:56] [Client thread/INFO]: [STDOUT]: DIRT BLOCK >> tile.dirt
[10:00:57] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Vulcanite, FMLFileResourcePack:Example Mod, FMLFileResourcePack:Golden Anvil, FMLFileResourcePack:Snow Accumulation, FMLFileResourcePack:Carbonado, FMLFileResourcePack:Galaxite, FMLFileResourcePack:Natural Baby Animals, FMLFileResourcePack:Just Enough Items
[10:01:02] [Client thread/INFO]: SoundSystem shutting down...
[10:01:02] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[10:01:02] [Sound Library Loader/INFO]: Starting up SoundSystem...
[10:01:03] [Thread-10/INFO]: Initializing LWJGL OpenAL
[10:01:03] [Thread-10/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[10:01:03] [Thread-10/INFO]: OpenAL initialized.
[10:01:03] [Sound Library Loader/INFO]: Sound engine started
[10:01:10] [Client thread/INFO]: Created: 512x512 textures-atlas
[10:01:12] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
[10:16:19] [Server thread/INFO]: Starting integrated minecraft server version 1.11.2
[10:16:19] [Server thread/INFO]: Generating keypair
[10:16:20] [Server thread/INFO]: Preparing start region for level 0
[10:16:21] [Server thread/INFO]: Preparing spawn area: 7%
[10:16:22] [Server thread/INFO]: Preparing spawn area: 12%
[10:16:23] [Server thread/INFO]: Preparing spawn area: 20%
[10:16:24] [Server thread/INFO]: Preparing spawn area: 27%
[10:16:25] [Server thread/INFO]: Preparing spawn area: 36%
[10:16:26] [Server thread/INFO]: Preparing spawn area: 46%
[10:16:27] [Server thread/INFO]: Preparing spawn area: 59%
[10:16:28] [Server thread/INFO]: Preparing spawn area: 71%
[10:16:29] [Server thread/INFO]: Preparing spawn area: 84%
[10:16:30] [Server thread/INFO]: Preparing spawn area: 95%
[10:16:31] [Server thread/INFO]: Changing view distance to 14, from 10
[10:16:32] [Server thread/INFO]: Player598[local:E:999f0948] logged in with entity id 2070 at (-172.5, 62.0, 266.5)
[10:16:32] [Server thread/INFO]: Player598 joined the game
[10:16:34] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@610e581d[id=2ecec10b-3fca-3e44-9b51-4cca88e1c207,name=Player598,properties={},legacy=false]
com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time
	at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:79) ~[YggdrasilAuthenticationService.class:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:180) [YggdrasilMinecraftSessionService.class:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:60) [YggdrasilMinecraftSessionService$1.class:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:57) [YggdrasilMinecraftSessionService$1.class:?]
	at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?]
	at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?]
	at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?]
	at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?]
	at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?]
	at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?]
	at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?]
	at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?]
	at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:170) [YggdrasilMinecraftSessionService.class:?]
	at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3056) [Minecraft.class:?]
	at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:138) [SkinManager$3.class:?]
	at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_141]
	at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_141]
	at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_141]
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_141]
	at java.lang.Thread.run(Unknown Source) [?:1.8.0_141]
[10:16:35] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2929ms behind, skipping 58 tick(s)
[10:16:35] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/2183, l='FakkaVacca', x=-263.50, y=62.00, z=298.50]
[10:16:35] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/2184, l='FakkaVacca', x=-265.50, y=62.00, z=295.50]
[10:16:35] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/2185, l='FakkaVacca', x=-263.50, y=62.00, z=294.50]
[10:16:35] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/2186, l='FakkaVacca', x=-263.50, y=62.00, z=296.50]
[10:16:35] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/2187, l='FakkaVacca', x=-85.50, y=62.00, z=194.50]
[10:16:35] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/2188, l='FakkaVacca', x=-81.50, y=62.00, z=195.50]
[10:16:35] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/2189, l='FakkaVacca', x=-86.50, y=62.00, z=196.50]
[10:16:35] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/2190, l='FakkaVacca', x=-87.50, y=62.00, z=200.50]
[10:16:35] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/2191, l='FakkaVacca', x=-72.50, y=57.00, z=205.50]
[10:16:35] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/2192, l='FakkaVacca', x=-73.50, y=57.00, z=210.50]
[10:16:35] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/2193, l='FakkaVacca', x=-71.50, y=57.00, z=204.50]
[10:16:36] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2205, l='FakkaVacca', x=-260.50, y=56.00, z=172.50]
[10:16:36] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2206, l='FakkaVacca', x=-253.50, y=56.00, z=170.50]
[10:16:36] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/2232, l='FakkaVacca', x=-233.50, y=66.00, z=156.50]
[10:16:36] [Server thread/INFO]: [STDOUT]: checking EntityEnderman['Enderman'/2235, l='FakkaVacca', x=-235.50, y=66.00, z=156.50]
[10:16:36] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2236, l='FakkaVacca', x=-232.50, y=66.00, z=154.50]
[10:16:36] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2258, l='FakkaVacca', x=-174.50, y=25.00, z=167.50]
[10:16:36] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2260, l='FakkaVacca', x=-176.50, y=25.00, z=164.50]
[10:16:36] [Server thread/INFO]: [STDOUT]: checking EntitySpider['Spider'/2285, l='FakkaVacca', x=-189.50, y=15.00, z=284.50]
[10:16:36] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2286, l='FakkaVacca', x=-189.50, y=15.00, z=281.50]
[10:16:36] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2288, l='FakkaVacca', x=-190.50, y=15.00, z=280.50]
[10:16:36] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2302, l='FakkaVacca', x=-278.50, y=32.00, z=147.50]
[10:16:36] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2304, l='FakkaVacca', x=-74.50, y=46.00, z=373.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2337, l='FakkaVacca', x=-242.50, y=49.00, z=181.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2338, l='FakkaVacca', x=-240.50, y=49.00, z=180.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/2347, l='FakkaVacca', x=-256.50, y=21.00, z=374.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2352, l='FakkaVacca', x=-276.50, y=32.00, z=147.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2353, l='FakkaVacca', x=-285.50, y=61.00, z=170.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2356, l='FakkaVacca', x=-114.50, y=22.00, z=258.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2371, l='FakkaVacca', x=-155.50, y=18.00, z=170.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2375, l='FakkaVacca', x=-234.50, y=20.00, z=177.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2376, l='FakkaVacca', x=-239.50, y=20.00, z=180.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2377, l='FakkaVacca', x=-237.50, y=20.00, z=181.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2378, l='FakkaVacca', x=-232.50, y=20.00, z=178.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2381, l='FakkaVacca', x=-65.50, y=49.00, z=342.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2411, l='FakkaVacca', x=-129.50, y=30.00, z=192.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/2412, l='FakkaVacca', x=-128.50, y=30.00, z=189.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/2413, l='FakkaVacca', x=-128.50, y=30.00, z=187.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/2414, l='FakkaVacca', x=-128.50, y=30.00, z=187.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2423, l='FakkaVacca', x=-218.50, y=36.00, z=279.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2425, l='FakkaVacca', x=-219.50, y=36.00, z=278.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2460, l='FakkaVacca', x=-234.50, y=19.00, z=300.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2461, l='FakkaVacca', x=-235.50, y=19.00, z=299.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/2466, l='FakkaVacca', x=-251.50, y=46.00, z=344.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2467, l='FakkaVacca', x=-254.50, y=46.00, z=345.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2468, l='FakkaVacca', x=-253.50, y=46.00, z=346.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2472, l='FakkaVacca', x=-229.50, y=13.00, z=205.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2473, l='FakkaVacca', x=-229.50, y=13.00, z=208.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2479, l='FakkaVacca', x=-103.50, y=21.00, z=276.50]
[10:16:37] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2480, l='FakkaVacca', x=-107.50, y=21.00, z=277.50]
[10:16:38] [Server thread/INFO]: [STDOUT]: checking EntitySpider['Spider'/2495, l='FakkaVacca', x=-248.50, y=27.00, z=243.50]
[10:16:38] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2512, l='FakkaVacca', x=-63.50, y=47.00, z=305.50]
[10:16:38] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2515, l='FakkaVacca', x=-69.50, y=47.00, z=303.50]
[10:16:38] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2554, l='FakkaVacca', x=-99.50, y=29.00, z=287.50]
[10:16:38] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2555, l='FakkaVacca', x=-99.50, y=29.00, z=287.50]
[10:16:38] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2556, l='FakkaVacca', x=-264.50, y=23.00, z=306.50]
[10:16:38] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2557, l='FakkaVacca', x=-262.50, y=23.00, z=309.50]
[10:16:38] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/2560, l='FakkaVacca', x=-265.50, y=23.00, z=310.50]
[10:16:39] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2615, l='FakkaVacca', x=-60.50, y=27.00, z=369.50]
[10:16:39] [Server thread/INFO]: [STDOUT]: checking EntitySpider['Spider'/2633, l='FakkaVacca', x=-277.50, y=56.00, z=185.50]
[10:16:39] [Server thread/INFO]: [STDOUT]: checking EntityWitch['Witch'/2647, l='FakkaVacca', x=-252.50, y=20.00, z=379.50]
[10:16:39] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2678, l='FakkaVacca', x=-169.50, y=37.00, z=169.50]
[10:16:39] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2679, l='FakkaVacca', x=-172.50, y=37.00, z=172.50]
[10:16:39] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2690, l='FakkaVacca', x=-145.50, y=25.00, z=151.50]
[10:16:39] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2691, l='FakkaVacca', x=-246.50, y=22.00, z=171.50]
[10:16:39] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2692, l='FakkaVacca', x=-245.50, y=22.00, z=172.50]
[10:16:40] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2718, l='FakkaVacca', x=-192.50, y=52.00, z=176.50]
[10:16:40] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2725, l='FakkaVacca', x=-220.50, y=19.00, z=205.50]
[10:16:40] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2731, l='FakkaVacca', x=-97.50, y=13.00, z=273.50]
[10:16:40] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2737, l='FakkaVacca', x=-98.50, y=17.00, z=172.50]
[10:16:40] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2738, l='FakkaVacca', x=-96.50, y=17.00, z=171.50]
[10:16:40] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2741, l='FakkaVacca', x=-249.50, y=39.00, z=149.50]
[10:16:40] [Server thread/INFO]: [STDOUT]: checking EntityZombieVillager['Zombie Villager'/2742, l='FakkaVacca', x=-248.50, y=39.00, z=150.50]
[10:16:40] [Server thread/INFO]: [STDOUT]: checking EntityWitch['Witch'/2743, l='FakkaVacca', x=-251.50, y=39.00, z=149.50]
[10:16:40] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2765, l='FakkaVacca', x=-161.50, y=24.00, z=228.50]
[10:16:40] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2767, l='FakkaVacca', x=-254.50, y=21.00, z=302.50]
[10:16:40] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2785, l='FakkaVacca', x=-143.50, y=30.00, z=309.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2813, l='FakkaVacca', x=-99.50, y=16.00, z=229.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2819, l='FakkaVacca', x=-140.50, y=24.00, z=161.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2820, l='FakkaVacca', x=-144.50, y=24.00, z=162.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2822, l='FakkaVacca', x=-141.50, y=24.00, z=161.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2828, l='FakkaVacca', x=-131.50, y=31.00, z=192.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2838, l='FakkaVacca', x=-97.50, y=35.00, z=279.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2839, l='FakkaVacca', x=-95.50, y=35.00, z=276.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2840, l='FakkaVacca', x=-94.50, y=35.00, z=273.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2854, l='FakkaVacca', x=-132.50, y=32.00, z=260.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2857, l='FakkaVacca', x=-242.50, y=16.00, z=342.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2859, l='FakkaVacca', x=-259.50, y=57.00, z=175.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2872, l='FakkaVacca', x=-240.50, y=68.00, z=149.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2873, l='FakkaVacca', x=-233.50, y=68.00, z=150.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2875, l='FakkaVacca', x=-248.50, y=24.00, z=175.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2876, l='FakkaVacca', x=-248.50, y=24.00, z=174.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/2877, l='FakkaVacca', x=-249.50, y=24.00, z=175.50]
[10:16:41] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/2885, l='FakkaVacca', x=-124.50, y=33.00, z=248.50]
[10:16:42] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/2978, l='FakkaVacca', x=-76.50, y=26.00, z=396.50]
[10:16:42] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/2979, l='FakkaVacca', x=-75.50, y=26.00, z=395.50]
[10:16:42] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/2989, l='FakkaVacca', x=-98.50, y=30.00, z=211.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3005, l='FakkaVacca', x=-138.50, y=26.00, z=163.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3011, l='FakkaVacca', x=-244.50, y=21.00, z=174.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3012, l='FakkaVacca', x=-240.50, y=21.00, z=171.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3017, l='FakkaVacca', x=-224.50, y=16.00, z=201.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3018, l='FakkaVacca', x=-234.50, y=16.00, z=205.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3050, l='FakkaVacca', x=-198.50, y=28.00, z=248.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3051, l='FakkaVacca', x=-200.50, y=43.00, z=235.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3063, l='FakkaVacca', x=-233.50, y=28.00, z=193.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3064, l='FakkaVacca', x=-244.50, y=28.00, z=200.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntityZombieVillager['Zombie Villager'/3083, l='FakkaVacca', x=-114.50, y=34.00, z=269.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3088, l='FakkaVacca', x=-112.50, y=16.00, z=380.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3107, l='FakkaVacca', x=-109.50, y=16.00, z=231.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntitySlime['Slime'/3110, l='FakkaVacca', x=-125.50, y=13.00, z=287.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3113, l='FakkaVacca', x=-234.50, y=29.00, z=193.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3114, l='FakkaVacca', x=-233.50, y=29.00, z=197.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3115, l='FakkaVacca', x=-234.50, y=29.00, z=196.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3127, l='FakkaVacca', x=-272.50, y=15.00, z=368.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3128, l='FakkaVacca', x=-274.50, y=15.00, z=369.50]
[10:16:43] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3129, l='FakkaVacca', x=-274.50, y=15.00, z=368.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3161, l='FakkaVacca', x=-160.50, y=39.00, z=196.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3163, l='FakkaVacca', x=-161.50, y=39.00, z=200.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntitySpider['Spider'/3177, l='FakkaVacca', x=-149.50, y=39.00, z=203.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3178, l='FakkaVacca', x=-150.50, y=39.00, z=205.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3183, l='FakkaVacca', x=-178.50, y=26.00, z=177.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3184, l='FakkaVacca', x=-180.50, y=26.00, z=178.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3195, l='FakkaVacca', x=-169.50, y=30.00, z=167.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3197, l='FakkaVacca', x=-224.50, y=40.00, z=213.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3200, l='FakkaVacca', x=-152.50, y=50.00, z=178.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntitySpider['Spider'/3203, l='FakkaVacca', x=-246.50, y=17.00, z=306.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntitySpider['Spider'/3204, l='FakkaVacca', x=-243.50, y=17.00, z=305.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3205, l='FakkaVacca', x=-245.50, y=17.00, z=306.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3220, l='FakkaVacca', x=-225.50, y=16.00, z=202.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntitySpider['Spider'/3235, l='FakkaVacca', x=-249.50, y=35.00, z=224.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3236, l='FakkaVacca', x=-229.50, y=30.00, z=192.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3250, l='FakkaVacca', x=-229.50, y=24.00, z=327.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntitySpider['Spider'/3251, l='FakkaVacca', x=-229.50, y=24.00, z=326.50]
[10:16:44] [Server thread/INFO]: Player598 has just earned the achievement [Taking Inventory]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3259, l='FakkaVacca', x=-242.50, y=16.00, z=222.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/3260, l='FakkaVacca', x=-51.50, y=61.00, z=285.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/3261, l='FakkaVacca', x=-51.50, y=61.00, z=293.50]
[10:16:44] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/3262, l='FakkaVacca', x=-50.50, y=61.00, z=292.50]
[10:16:45] [Client thread/INFO]: [CHAT] Player598 has just earned the achievement [Taking Inventory]
[10:16:45] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3269, l='FakkaVacca', x=-186.50, y=25.00, z=190.50]
[10:16:45] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3270, l='FakkaVacca', x=-185.50, y=25.00, z=187.50]
[10:16:45] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3296, l='FakkaVacca', x=-239.50, y=14.00, z=219.50]
[10:16:45] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3322, l='FakkaVacca', x=-69.50, y=39.00, z=240.50]
[10:16:45] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3330, l='FakkaVacca', x=-62.50, y=23.00, z=270.50]
[10:16:46] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3385, l='FakkaVacca', x=-183.50, y=46.00, z=227.50]
[10:16:46] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3388, l='FakkaVacca', x=-119.50, y=23.00, z=276.50]
[10:16:46] [Server thread/INFO]: [STDOUT]: checking EntitySpider['Spider'/3406, l='FakkaVacca', x=-256.50, y=30.00, z=234.50]
[10:16:46] [Server thread/INFO]: [STDOUT]: checking EntitySpider['Spider'/3413, l='FakkaVacca', x=-211.50, y=29.00, z=230.50]
[10:16:46] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3414, l='FakkaVacca', x=-75.50, y=67.00, z=355.50]
[10:16:46] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3434, l='FakkaVacca', x=-79.50, y=48.00, z=343.50]
[10:16:46] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3459, l='FakkaVacca', x=-209.50, y=58.00, z=306.50]
[10:16:46] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3461, l='FakkaVacca', x=-95.50, y=35.00, z=274.50]
[10:16:46] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3462, l='FakkaVacca', x=-96.50, y=35.00, z=280.50]
[10:16:48] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3470, l='FakkaVacca', x=-126.50, y=41.00, z=283.50]
[10:16:54] [Server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 4703ms behind, skipping 94 tick(s)
[10:17:05] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3483, l='FakkaVacca', x=-121.50, y=30.00, z=186.50]
[10:17:07] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3518, l='FakkaVacca', x=-159.50, y=24.00, z=223.50]
[10:17:07] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3519, l='FakkaVacca', x=-161.50, y=24.00, z=222.50]
[10:17:07] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3520, l='FakkaVacca', x=-158.50, y=24.00, z=224.50]
[10:17:07] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3572, l='FakkaVacca', x=-233.50, y=39.00, z=206.50]
[10:17:09] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3580, l='FakkaVacca', x=-234.50, y=22.00, z=185.50]
[10:17:09] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3593, l='FakkaVacca', x=-152.50, y=47.00, z=188.50]
[10:17:09] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3595, l='FakkaVacca', x=-153.50, y=47.00, z=185.50]
[10:17:09] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3596, l='FakkaVacca', x=-150.50, y=47.00, z=188.50]
[10:17:09] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3598, l='FakkaVacca', x=-102.50, y=23.00, z=181.50]
[10:17:09] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3599, l='FakkaVacca', x=-107.50, y=23.00, z=188.50]
[10:17:09] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3606, l='FakkaVacca', x=-209.50, y=55.00, z=274.50]
[10:17:10] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3635, l='FakkaVacca', x=-121.50, y=12.00, z=180.50]
[10:17:10] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3647, l='FakkaVacca', x=-82.50, y=31.00, z=202.50]
[10:17:10] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3648, l='FakkaVacca', x=-81.50, y=31.00, z=201.50]
[10:17:10] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3649, l='FakkaVacca', x=-81.50, y=31.00, z=201.50]
[10:17:10] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3673, l='FakkaVacca', x=-131.50, y=31.00, z=192.50]
[10:17:11] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3682, l='FakkaVacca', x=-207.50, y=30.00, z=232.50]
[10:17:11] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3683, l='FakkaVacca', x=-192.50, y=30.00, z=251.50]
[10:17:13] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3693, l='FakkaVacca', x=-98.50, y=12.00, z=242.50]
[10:17:14] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3711, l='FakkaVacca', x=-243.50, y=26.00, z=232.50]
[10:17:14] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3712, l='FakkaVacca', x=-243.50, y=26.00, z=236.50]
[10:17:14] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3746, l='FakkaVacca', x=-182.50, y=48.00, z=218.50]
[10:17:15] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3748, l='FakkaVacca', x=-168.50, y=39.00, z=213.50]
[10:17:15] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3749, l='FakkaVacca', x=-167.50, y=39.00, z=213.50]
[10:17:15] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3756, l='FakkaVacca', x=-67.50, y=24.00, z=394.50]
[10:17:16] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3774, l='FakkaVacca', x=-78.50, y=18.00, z=321.50]
[10:17:16] [Server thread/INFO]: [STDOUT]: checking EntitySpider['Spider'/3775, l='FakkaVacca', x=-125.50, y=30.00, z=264.50]
[10:17:17] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3794, l='FakkaVacca', x=-236.50, y=20.00, z=184.50]
[10:17:17] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3824, l='FakkaVacca', x=-98.50, y=33.00, z=283.50]
[10:17:17] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3825, l='FakkaVacca', x=-101.50, y=33.00, z=285.50]
[10:17:17] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3833, l='FakkaVacca', x=-262.50, y=59.00, z=194.50]
[10:17:17] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3834, l='FakkaVacca', x=-117.50, y=28.00, z=296.50]
[10:17:17] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3835, l='FakkaVacca', x=-120.50, y=28.00, z=296.50]
[10:17:17] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3836, l='FakkaVacca', x=-122.50, y=28.00, z=298.50]
[10:17:17] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3837, l='FakkaVacca', x=-124.50, y=28.00, z=296.50]
[10:17:20] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3888, l='FakkaVacca', x=-83.50, y=35.00, z=367.50]
[10:17:20] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/3889, l='FakkaVacca', x=-84.50, y=35.00, z=368.50]
[10:17:21] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3907, l='FakkaVacca', x=-193.50, y=52.00, z=179.50]
[10:17:21] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3912, l='FakkaVacca', x=-230.50, y=39.00, z=199.50]
[10:17:21] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3913, l='FakkaVacca', x=-233.50, y=39.00, z=197.50]
[10:17:21] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3914, l='FakkaVacca', x=-231.50, y=39.00, z=199.50]
[10:17:22] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3926, l='FakkaVacca', x=-239.50, y=19.00, z=306.50]
[10:17:22] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3927, l='FakkaVacca', x=-235.50, y=19.00, z=303.50]
[10:17:22] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3935, l='FakkaVacca', x=-128.50, y=17.00, z=277.50]
[10:17:24] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3965, l='FakkaVacca', x=-116.50, y=21.00, z=197.50]
[10:17:24] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/3966, l='FakkaVacca', x=-116.50, y=21.00, z=197.50]
[10:17:25] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/3974, l='FakkaVacca', x=-67.50, y=34.00, z=316.50]
[10:17:25] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/3975, l='FakkaVacca', x=-68.50, y=34.00, z=317.50]
[10:17:25] [Server thread/INFO]: [STDOUT]: checking EntityZombieVillager['Zombie Villager'/4016, l='FakkaVacca', x=-79.50, y=24.00, z=387.50]
[10:17:25] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4047, l='FakkaVacca', x=-147.50, y=34.00, z=190.50]
[10:17:25] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/4050, l='FakkaVacca', x=-53.50, y=64.00, z=368.50]
[10:17:25] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/4051, l='FakkaVacca', x=-54.50, y=64.00, z=367.50]
[10:17:25] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/4052, l='FakkaVacca', x=-56.50, y=64.00, z=367.50]
[10:17:28] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/4063, l='FakkaVacca', x=-220.50, y=16.00, z=206.50]
[10:17:28] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/4073, l='FakkaVacca', x=-209.50, y=55.00, z=373.50]
[10:17:29] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4094, l='FakkaVacca', x=-247.50, y=38.00, z=298.50]
[10:17:29] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/4107, l='FakkaVacca', x=-81.50, y=31.00, z=230.50]
[10:17:29] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/4113, l='FakkaVacca', x=-152.50, y=47.00, z=181.50]
[10:17:29] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/4121, l='FakkaVacca', x=-192.50, y=62.00, z=250.50]
[10:17:29] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/4122, l='FakkaVacca', x=-194.50, y=62.00, z=251.50]
[10:17:29] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/4123, l='FakkaVacca', x=-55.50, y=59.00, z=236.50]
[10:17:29] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/4124, l='FakkaVacca', x=-53.50, y=59.00, z=233.50]
[10:17:29] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/4125, l='FakkaVacca', x=-55.50, y=59.00, z=234.50]
[10:17:29] [Server thread/INFO]: [STDOUT]: checking EntitySquid['Squid'/4126, l='FakkaVacca', x=-60.50, y=59.00, z=234.50]
[10:17:30] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/4151, l='FakkaVacca', x=-72.50, y=25.00, z=381.50]
[10:17:30] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4152, l='FakkaVacca', x=-76.50, y=25.00, z=380.50]
[10:17:30] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4156, l='FakkaVacca', x=-168.50, y=51.00, z=180.50]
[10:17:30] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4162, l='FakkaVacca', x=-114.50, y=35.00, z=268.50]
[10:17:31] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4166, l='FakkaVacca', x=-128.50, y=21.00, z=269.50]
[10:17:32] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4203, l='FakkaVacca', x=-237.50, y=35.00, z=228.50]
[10:17:32] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4204, l='FakkaVacca', x=-233.50, y=35.00, z=233.50]
[10:17:33] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4216, l='FakkaVacca', x=-193.50, y=30.00, z=251.50]
[10:17:33] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/4217, l='FakkaVacca', x=-192.50, y=30.00, z=250.50]
[10:17:33] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/4218, l='FakkaVacca', x=-192.50, y=30.00, z=251.50]
[10:17:35] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/4235, l='FakkaVacca', x=-51.50, y=20.00, z=380.50]
[10:17:35] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4236, l='FakkaVacca', x=-52.50, y=20.00, z=382.50]
[10:17:35] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4237, l='FakkaVacca', x=-128.50, y=19.00, z=181.50]
[10:17:35] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4245, l='FakkaVacca', x=-86.50, y=21.00, z=299.50]
[10:17:35] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4246, l='FakkaVacca', x=-90.50, y=21.00, z=294.50]
[10:17:36] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/4261, l='FakkaVacca', x=-214.50, y=34.00, z=284.50]
[10:17:36] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/4262, l='FakkaVacca', x=-214.50, y=34.00, z=286.50]
[10:17:36] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/4266, l='FakkaVacca', x=-51.50, y=45.00, z=323.50]
[10:17:39] [Server thread/INFO]: [STDOUT]: checking EntityWitch['Witch'/4281, l='FakkaVacca', x=-127.50, y=13.00, z=286.50]
[10:17:39] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/4295, l='FakkaVacca', x=-211.50, y=39.00, z=222.50]
[10:17:39] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4311, l='FakkaVacca', x=-98.50, y=16.00, z=256.50]
[10:17:39] [Server thread/INFO]: [STDOUT]: checking EntitySpider['Spider'/4312, l='FakkaVacca', x=-95.50, y=16.00, z=256.50]
[10:17:39] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4313, l='FakkaVacca', x=-249.50, y=36.00, z=229.50]
[10:17:39] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4314, l='FakkaVacca', x=-229.50, y=29.00, z=199.50]
[10:17:43] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4323, l='FakkaVacca', x=-149.50, y=46.00, z=187.50]
[10:17:45] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/4356, l='FakkaVacca', x=-227.50, y=19.00, z=200.50]
[10:17:45] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/4362, l='FakkaVacca', x=-258.50, y=62.00, z=183.50]
[10:17:45] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/4372, l='FakkaVacca', x=-137.50, y=32.00, z=253.50]
[10:17:45] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/4373, l='FakkaVacca', x=-132.50, y=32.00, z=258.50]
[10:17:46] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4460, l='FakkaVacca', x=-256.50, y=11.00, z=294.50]
[10:17:46] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4467, l='FakkaVacca', x=-51.50, y=45.00, z=367.50]
[10:17:46] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4468, l='FakkaVacca', x=-54.50, y=45.00, z=362.50]
[10:17:46] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4469, l='FakkaVacca', x=-53.50, y=45.00, z=360.50]
[10:17:46] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4470, l='FakkaVacca', x=-52.50, y=45.00, z=360.50]
[10:17:46] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4477, l='FakkaVacca', x=-231.50, y=39.00, z=208.50]
[10:17:47] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4493, l='FakkaVacca', x=-89.50, y=37.00, z=358.50]
[10:17:47] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4494, l='FakkaVacca', x=-90.50, y=37.00, z=360.50]
[10:17:47] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4495, l='FakkaVacca', x=-89.50, y=37.00, z=360.50]
[10:17:47] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4496, l='FakkaVacca', x=-88.50, y=37.00, z=357.50]
[10:17:47] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4504, l='FakkaVacca', x=-62.50, y=41.00, z=243.50]
[10:17:47] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4505, l='FakkaVacca', x=-59.50, y=41.00, z=241.50]
[10:17:51] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4532, l='FakkaVacca', x=-182.50, y=48.00, z=218.50]
[10:17:52] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4552, l='FakkaVacca', x=-88.50, y=39.00, z=281.50]
[10:17:52] [Server thread/INFO]: [STDOUT]: checking EntitySkeleton['Skeleton'/4554, l='FakkaVacca', x=-99.50, y=26.00, z=292.50]
[10:17:53] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/4562, l='FakkaVacca', x=-196.50, y=14.00, z=275.50]
[10:17:53] [Server thread/INFO]: [STDOUT]: checking EntityZombie['Zombie'/4563, l='FakkaVacca', x=-197.50, y=14.00, z=275.50]
[10:17:53] [Server thread/INFO]: [STDOUT]: checking EntityCreeper['Creeper'/4569, l='FakkaVacca', x=-276.50, y=26.00, z=356.50]
[10:17:53] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/4575, l='FakkaVacca', x=-55.50, y=24.00, z=257.50]
[10:17:53] [Server thread/INFO]: [STDOUT]: checking EntityBat['Bat'/4598, l='FakkaVacca', x=-234.50, y=16.00, z=197.50]
[10:17:55] [Server thread/INFO]: Saving and pausing game...
[10:17:55] [Server thread/INFO]: Saving chunks for level 'FakkaVacca'/Overworld
[10:17:55] [Server thread/INFO]: Saving chunks for level 'FakkaVacca'/Nether
[10:17:55] [Server thread/INFO]: Saving chunks for level 'FakkaVacca'/The End
[10:17:55] [Server thread/INFO]: Stopping server
[10:17:55] [Server thread/INFO]: Saving players
[10:17:55] [Server thread/INFO]: Player598 lost connection: TextComponent{text='Disconnected', siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}
[10:17:55] [Server thread/INFO]: Player598 left the game
[10:17:55] [Server thread/INFO]: Stopping singleplayer server as player logged out
[10:17:55] [Server thread/INFO]: Saving worlds
[10:17:55] [Server thread/INFO]: Saving chunks for level 'FakkaVacca'/Overworld
[10:17:55] [Server thread/INFO]: Saving chunks for level 'FakkaVacca'/Nether
[10:17:55] [Server thread/INFO]: Saving chunks for level 'FakkaVacca'/The End
[10:17:56] [Client thread/INFO]: Stopping!
[10:17:56] [Client thread/INFO]: SoundSystem shutting down...
[10:17:56] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

 

 

Edited by Insane96MCP
More infos
Posted
Just now, diesieben07 said:

You need to use EntityJoinWorldEvent if you want to handle any entities being spawned in the world.

Note that this also fires when an entity is loaded from disk.

So I have to tag them after checking them to prevent the loading from disk part?

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

    • so, i'm on 1.12.2, and i can't even load my Minecraft because the CodeChickenLib mod is giving me an error message. i already tried deleting the config file of the mod, reinstaling the mod, but nothing works! can someone help me?  
    • mclo.gs only shows 25000 lines - add the rest with another link
    • I am having trouble getting the game to load. I changed nothing about my code but one day it chose to start doing this for some reason. I also get this error message aswell: Caused by: java.lang.NullPointerException: Registry Object not present: wonderfulwoodlands:turkey_tail_mushrooms. So I tried changing my registering to use a supplier of my block which corrected that error before but now it no longer changes anything. My blocks class: public class ModBlocks { public static final DeferredRegister<Block> BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, WonderfulWoodlands.MOD_ID); public static final RegistryObject<Block> TURKEY_TAIL_MUSHROOMS = registerBlock("turkey_tail_mushrooms", () -> new SmallShelfridgeBlock(BlockBehaviour.Properties.of() .setId(BLOCKS.key("turkey_tail_mushrooms")) .noCollission() .sound(SoundType.WOOD) )); public static <T extends Block> RegistryObject<T> registerBlock(String name, Supplier<T> block) { RegistryObject<T> registeredBlock = BLOCKS.register(name, block); registerBlockItem(name, registeredBlock); return registeredBlock; } public static <T extends Block> void registerBlockItem(String name, RegistryObject<T> block) { ModItems.ITEMS.register(name, () -> new BlockItem(block.get(), new Item.Properties().setId(ModItems.ITEMS.key(name)))); } public static void register(IEventBus eventBus) { BLOCKS.register(eventBus); } } The SmallShelfridgeBlock class: public class SmallShelfridgeBlock extends Block { public static final EnumProperty<Direction> FACING = BlockStateProperties.HORIZONTAL_FACING; public static final IntegerProperty AMOUNT = BlockStateProperties.FLOWER_AMOUNT; public static final VoxelShape NORTH_SHAPE = Block.box(0, 0, 13, 16, 16, 3); public static final VoxelShape EAST_SHAPE = Block.box(0, 0, 0, 3, 16, 16); public static final VoxelShape SOUTH_SHAPE = Block.box(0, 0, 0, 16, 16, 3); public static final VoxelShape WEST_SHAPE = Block.box(0, 0, 13, 3, 16, 16); public SmallShelfridgeBlock(Properties properties) { super(properties); this.registerDefaultState(this.stateDefinition.any().setValue(FACING, Direction.NORTH).setValue(AMOUNT, 1)); } @Override protected void createBlockStateDefinition(StateDefinition.Builder<Block, BlockState> pBuilder) { pBuilder.add(FACING, AMOUNT); } @Override public boolean canBeReplaced(@NotNull BlockState blockState, BlockPlaceContext blockPlaceContext) { return !blockPlaceContext.isSecondaryUseActive() && blockPlaceContext.getItemInHand().is(this.asItem()) && blockState.getValue(AMOUNT) < 4 || super.canBeReplaced(blockState, blockPlaceContext); } @Override public @NotNull VoxelShape getShape(BlockState blockState, @NotNull BlockGetter blockGetter, @NotNull BlockPos blockPos, @NotNull CollisionContext collisionContext) { Direction direction = blockState.getValue(FACING); switch(direction) { default -> { return NORTH_SHAPE; } case EAST -> { return EAST_SHAPE; } case SOUTH -> { return SOUTH_SHAPE; } case WEST -> { return WEST_SHAPE; } } } @Override public BlockState getStateForPlacement(BlockPlaceContext blockPlaceContext) { BlockState blockstate = blockPlaceContext.getLevel().getBlockState(blockPlaceContext.getClickedPos()); return blockstate.is(this) ? blockstate.setValue(AMOUNT, Math.min(4, blockstate.getValue(AMOUNT) + 1)) : this.defaultBlockState().setValue(FACING, blockPlaceContext.getHorizontalDirection().getOpposite()); } } My latest.log: [22Feb2025 14:13:00.602] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forge_userdev_client, --version, MOD_DEV, --assetIndex, 19, --assetsDir, C:\Users\campb\.gradle\caches\forge_gradle\assets, --gameDir, ., --mixin.config, wonderfulwoodlands.mixins.json] [22Feb2025 14:13:00.605] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: JVM identified as Eclipse Adoptium OpenJDK 64-Bit Server VM 21.0.4+7-LTS [22Feb2025 14:13:00.606] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.2.4 starting: java version 21.0.4 by Eclipse Adoptium; OS Windows 11 arch amd64 version 10.0 [22Feb2025 14:13:00.791] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [22Feb2025 14:13:00.988] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 [22Feb2025 14:13:01.035] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 [22Feb2025 14:13:01.504] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.7 Source=jar:file:///C:/Users/campb/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.7/8ab114ac385e6dbdad5efafe28aba4df8120915f/mixin-0.8.7.jar!/ Service=ModLauncher Env=CLIENT [22Feb2025 14:13:02.124] [EarlyDisplay/INFO] [EARLYDISPLAY/]: GL info: Intel(R) UHD Graphics GL version 4.6.0 - Build 26.20.100.6911, Intel [22Feb2025 14:13:04.063] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! [22Feb2025 14:13:05.719] [main/INFO] [mixin/]: Compatibility level set to JAVA_21 [22Feb2025 14:13:05.774] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forge_userdev_client' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, C:\Users\campb\.gradle\caches\forge_gradle\assets, --assetIndex, 19] [22Feb2025 14:13:05.927] [main/WARN] [mixin/]: Reference map 'wonderfulwoodlands.refmap.json' for wonderfulwoodlands.mixins.json could not be read. If this is a development environment you can ignore this message [22Feb2025 14:13:10.506] [Datafixer Bootstrap/INFO] [com.mojang.datafixers.DataFixerBuilder/]: 243 Datafixer optimizations took 996 milliseconds [22Feb2025 14:13:18.985] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:root [22Feb2025 14:13:18.985] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:sound_event [22Feb2025 14:13:18.985] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:fluid [22Feb2025 14:13:18.985] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:particle_type [22Feb2025 14:13:18.986] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:attribute [22Feb2025 14:13:18.987] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:mob_effect [22Feb2025 14:13:18.987] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:block [22Feb2025 14:13:18.987] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:enchantment_effect_component_type [22Feb2025 14:13:18.987] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:data_component_type [22Feb2025 14:13:18.988] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:entity_type [22Feb2025 14:13:18.988] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:item [22Feb2025 14:13:18.991] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:game_event [22Feb2025 14:13:18.991] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:potion [22Feb2025 14:13:18.991] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:block_entity_type [22Feb2025 14:13:18.992] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:stat_type [22Feb2025 14:13:18.992] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:custom_stat [22Feb2025 14:13:18.992] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:chunk_status [22Feb2025 14:13:18.992] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:rule_test [22Feb2025 14:13:18.993] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:rule_block_entity_modifier [22Feb2025 14:13:18.993] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:pos_rule_test [22Feb2025 14:13:18.993] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:menu [22Feb2025 14:13:18.993] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:recipe_type [22Feb2025 14:13:18.994] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:recipe_serializer [22Feb2025 14:13:18.995] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:position_source_type [22Feb2025 14:13:18.996] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:command_argument_type [22Feb2025 14:13:18.996] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:villager_type [22Feb2025 14:13:18.996] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:villager_profession [22Feb2025 14:13:18.998] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:point_of_interest_type [22Feb2025 14:13:19.001] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:memory_module_type [22Feb2025 14:13:19.017] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:sensor_type [22Feb2025 14:13:19.018] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:activity [22Feb2025 14:13:19.018] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:schedule [22Feb2025 14:13:19.018] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:loot_score_provider_type [22Feb2025 14:13:19.018] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:loot_number_provider_type [22Feb2025 14:13:19.019] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:map_decoration_type [22Feb2025 14:13:19.019] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:loot_nbt_provider_type [22Feb2025 14:13:19.019] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:loot_function_type [22Feb2025 14:13:19.019] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:loot_pool_entry_type [22Feb2025 14:13:19.019] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:loot_condition_type [22Feb2025 14:13:19.022] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:float_provider_type [22Feb2025 14:13:19.022] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:int_provider_type [22Feb2025 14:13:19.022] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:height_provider_type [22Feb2025 14:13:19.023] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:block_predicate_type [22Feb2025 14:13:19.023] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/carver [22Feb2025 14:13:19.023] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/structure_processor [22Feb2025 14:13:19.023] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/feature [22Feb2025 14:13:19.024] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/structure_placement [22Feb2025 14:13:19.024] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/structure_piece [22Feb2025 14:13:19.024] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/structure_type [22Feb2025 14:13:19.024] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/placement_modifier_type [22Feb2025 14:13:19.024] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/block_state_provider_type [22Feb2025 14:13:19.025] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/foliage_placer_type [22Feb2025 14:13:19.025] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/trunk_placer_type [22Feb2025 14:13:19.025] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/root_placer_type [22Feb2025 14:13:19.025] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/tree_decorator_type [22Feb2025 14:13:19.027] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/feature_size_type [22Feb2025 14:13:19.028] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/biome_source [22Feb2025 14:13:19.030] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/chunk_generator [22Feb2025 14:13:19.030] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/material_condition [22Feb2025 14:13:19.030] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/material_rule [22Feb2025 14:13:19.030] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/density_function_type [22Feb2025 14:13:19.031] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:block_type [22Feb2025 14:13:19.031] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/structure_pool_element [22Feb2025 14:13:19.031] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:worldgen/pool_alias_binding [22Feb2025 14:13:19.031] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:cat_variant [22Feb2025 14:13:19.031] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:frog_variant [22Feb2025 14:13:19.032] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:decorated_pot_pattern [22Feb2025 14:13:19.032] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:creative_mode_tab [22Feb2025 14:13:19.032] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:trigger_type [22Feb2025 14:13:19.032] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:number_format_type [22Feb2025 14:13:19.032] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:entity_sub_predicate_type [22Feb2025 14:13:19.034] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:item_sub_predicate_type [22Feb2025 14:13:19.034] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:enchantment_level_based_value_type [22Feb2025 14:13:19.035] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:enchantment_entity_effect_type [22Feb2025 14:13:19.035] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:enchantment_location_based_effect_type [22Feb2025 14:13:19.035] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:enchantment_value_effect_type [22Feb2025 14:13:19.036] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:enchantment_provider_type [22Feb2025 14:13:19.037] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:consume_effect_type [22Feb2025 14:13:19.037] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:recipe_display [22Feb2025 14:13:19.037] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:slot_display [22Feb2025 14:13:19.037] [pool-5-thread-1/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: minecraft:recipe_book_category [22Feb2025 14:13:19.595] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/campb/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4/forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar%230!/assets/.mcassetsroot' uses unexpected schema [22Feb2025 14:13:19.597] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/campb/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4/forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar%230!/data/.mcassetsroot' uses unexpected schema [22Feb2025 14:13:19.639] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD] [22Feb2025 14:13:19.654] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Dev [22Feb2025 14:13:19.860] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.3+5 [22Feb2025 14:13:21.001] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 54.0.26, for MC 1.21.4 with MCP 20241203.143248 [22Feb2025 14:13:21.002] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v54.0.26 Initialized [22Feb2025 14:13:21.021] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Opening jdk.naming.dns/com.sun.jndi.dns to java.naming [22Feb2025 14:13:21.448] [Render thread/ERROR] [net.minecraftforge.fml.javafmlmod.FMLModContainer/]: Exception caught during firing event: null Index: 3 Listeners: 0: NORMAL 1: ASM: net.minecraftforge.registries.DeferredRegister$EventDispatcher@30548a28 handleEvent(Lnet/minecraftforge/registries/RegisterEvent;)V 2: ASM: net.minecraftforge.registries.DeferredRegister$EventDispatcher@446f7e86 handleEvent(Lnet/minecraftforge/registries/RegisterEvent;)V 3: ASM: net.minecraftforge.registries.DeferredRegister$EventDispatcher@523fad04 handleEvent(Lnet/minecraftforge/registries/RegisterEvent;)V java.lang.ExceptionInInitializerError at TRANSFORMER/[email protected]/net.Saveloy_Master.Wonderful_Woodlands.block.ModBlocks.lambda$static$0(ModBlocks.java:27) at TRANSFORMER/[email protected]/net.minecraftforge.registries.DeferredRegister$EventDispatcher.lambda$handleEvent$0(DeferredRegister.java:381) at TRANSFORMER/[email protected]/net.minecraftforge.registries.RegisterEvent.register(RegisterEvent.java:55) at TRANSFORMER/[email protected]/net.minecraftforge.registries.DeferredRegister$EventDispatcher.handleEvent(DeferredRegister.java:381) at TRANSFORMER/[email protected]/net.minecraftforge.registries.__EventDispatcher_handleEvent_RegisterEvent.invoke(.dynamic) at SECURE-BOOTSTRAP/net.minecraftforge.eventbus/net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:46) at SECURE-BOOTSTRAP/net.minecraftforge.eventbus/net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) at SECURE-BOOTSTRAP/net.minecraftforge.eventbus/net.minecraftforge.eventbus.EventBus.post(EventBus.java:288) at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.javafmlmod.FMLModContainer.acceptEvent(FMLModContainer.java:184) at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModLoader.lambda$postEventWithWrapInModOrder$19(ModLoader.java:400) at java.base/java.lang.Iterable.forEach(Iterable.java:75) at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModList.forEachModInOrder(ModList.java:148) at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModLoader.postEventWithWrapInModOrder(ModLoader.java:398) at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModLoader.postEventWrapContainerInModOrder(ModLoader.java:387) at TRANSFORMER/[email protected]/net.minecraftforge.registries.GameData.postRegisterEvents(GameData.java:351) at TRANSFORMER/[email protected]/net.minecraftforge.common.ForgeStatesProvider.lambda$gather$0(ForgeStatesProvider.java:34) at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModLoader.handleInlineTransition(ModLoader.java:258) at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModLoader.dispatchAndHandleError(ModLoader.java:247) at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:214) at TRANSFORMER/[email protected]/net.minecraftforge.client.loading.ClientModLoader.lambda$begin$1(ClientModLoader.java:48) at TRANSFORMER/[email protected]/net.minecraftforge.client.loading.ClientModLoader.lambda$createRunnableWithCatch$4(ClientModLoader.java:68) at TRANSFORMER/[email protected]/net.minecraftforge.client.loading.ClientModLoader.begin(ClientModLoader.java:48) at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.<init>(Minecraft.java:485) at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.main(Main.java:224) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) at java.base/java.lang.reflect.Method.invoke(Method.java:580) at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:96) at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$makeService$0(CommonLaunchHandler.java:79) at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:77) at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:97) at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:116) at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:75) at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapEntry.main(BootstrapEntry.java:17) at [email protected]/net.minecraftforge.bootstrap.Bootstrap.moduleMain(Bootstrap.java:188) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) at java.base/java.lang.reflect.Method.invoke(Method.java:580) at net.minecraftforge.bootstrap.Bootstrap.bootstrapMain(Bootstrap.java:133) at net.minecraftforge.bootstrap.Bootstrap.start(Bootstrap.java:53) at net.minecraftforge.bootstrap.ForgeBootstrap.main(ForgeBootstrap.java:19) Caused by: java.lang.IllegalArgumentException: The min values need to be smaller or equals to the max values at TRANSFORMER/[email protected]/net.minecraft.world.phys.shapes.Shapes.box(Shapes.java:50) at TRANSFORMER/[email protected]/net.minecraft.world.level.block.Block.box(Block.java:145) at TRANSFORMER/[email protected]/net.Saveloy_Master.Wonderful_Woodlands.block.custom.SmallShelfridgeBlock.<clinit>(SmallShelfridgeBlock.java:25) ... 39 more [22Feb2025 14:13:21.453] [Render thread/ERROR] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Caught exception during event RegisterEvent dispatch for modid wonderfulwoodlands java.lang.ExceptionInInitializerError: null at TRANSFORMER/[email protected]/net.Saveloy_Master.Wonderful_Woodlands.block.ModBlocks.lambda$static$0(ModBlocks.java:27) ~[main/:?] at TRANSFORMER/[email protected]/net.minecraftforge.registries.DeferredRegister$EventDispatcher.lambda$handleEvent$0(DeferredRegister.java:381) ~[forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar%231!/:?] at TRANSFORMER/[email protected]/net.minecraftforge.registries.RegisterEvent.register(RegisterEvent.java:55) ~[forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar%231!/:?] at TRANSFORMER/[email protected]/net.minecraftforge.registries.DeferredRegister$EventDispatcher.handleEvent(DeferredRegister.java:381) ~[forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar%231!/:?] at TRANSFORMER/[email protected]/net.minecraftforge.registries.__EventDispatcher_handleEvent_RegisterEvent.invoke(.dynamic) ~[forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar%231!/:?] at SECURE-BOOTSTRAP/net.minecraftforge.eventbus/net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:46) ~[eventbus-6.2.26.jar:?] at SECURE-BOOTSTRAP/net.minecraftforge.eventbus/net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-6.2.26.jar:?] at SECURE-BOOTSTRAP/net.minecraftforge.eventbus/net.minecraftforge.eventbus.EventBus.post(EventBus.java:288) ~[eventbus-6.2.26.jar:?] at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.javafmlmod.FMLModContainer.acceptEvent(FMLModContainer.java:184) ~[javafmllanguage-1.21.4-54.0.26.jar:54.0.26] at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModLoader.lambda$postEventWithWrapInModOrder$19(ModLoader.java:400) ~[fmlcore-1.21.4-54.0.26.jar:1.0] at java.base/java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModList.forEachModInOrder(ModList.java:148) ~[fmlcore-1.21.4-54.0.26.jar:1.0] at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModLoader.postEventWithWrapInModOrder(ModLoader.java:398) ~[fmlcore-1.21.4-54.0.26.jar:1.0] at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModLoader.postEventWrapContainerInModOrder(ModLoader.java:387) ~[fmlcore-1.21.4-54.0.26.jar:1.0] at TRANSFORMER/[email protected]/net.minecraftforge.registries.GameData.postRegisterEvents(GameData.java:351) ~[forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar:?] at TRANSFORMER/[email protected]/net.minecraftforge.common.ForgeStatesProvider.lambda$gather$0(ForgeStatesProvider.java:34) ~[forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar:?] at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModLoader.handleInlineTransition(ModLoader.java:258) ~[fmlcore-1.21.4-54.0.26.jar:1.0] at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModLoader.dispatchAndHandleError(ModLoader.java:247) ~[fmlcore-1.21.4-54.0.26.jar:1.0] at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:214) ~[fmlcore-1.21.4-54.0.26.jar:1.0] at TRANSFORMER/[email protected]/net.minecraftforge.client.loading.ClientModLoader.lambda$begin$1(ClientModLoader.java:48) ~[forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar:?] at TRANSFORMER/[email protected]/net.minecraftforge.client.loading.ClientModLoader.lambda$createRunnableWithCatch$4(ClientModLoader.java:68) ~[forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar:?] at TRANSFORMER/[email protected]/net.minecraftforge.client.loading.ClientModLoader.begin(ClientModLoader.java:48) ~[forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar:?] at TRANSFORMER/[email protected]/net.minecraft.client.Minecraft.<init>(Minecraft.java:485) ~[forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar:?] at TRANSFORMER/[email protected]/net.minecraft.client.main.Main.main(Main.java:224) ~[forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar:?] at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?] at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?] at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:96) ~[fmlloader-1.21.4-54.0.26.jar!/:?] at SECURE-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$makeService$0(CommonLaunchHandler.java:79) ~[fmlloader-1.21.4-54.0.26.jar!/:?] at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:77) [modlauncher-10.2.4.jar!/:?] at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:97) [modlauncher-10.2.4.jar!/:?] at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:116) [modlauncher-10.2.4.jar!/:?] at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:75) [modlauncher-10.2.4.jar!/:?] at SECURE-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapEntry.main(BootstrapEntry.java:17) [modlauncher-10.2.4.jar!/:?] at [email protected]/net.minecraftforge.bootstrap.Bootstrap.moduleMain(Bootstrap.java:188) [bootstrap-2.1.8.jar!/:?] at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[?:?] at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[?:?] at net.minecraftforge.bootstrap.Bootstrap.bootstrapMain(Bootstrap.java:133) [bootstrap-2.1.8.jar:2.1.8] at net.minecraftforge.bootstrap.Bootstrap.start(Bootstrap.java:53) [bootstrap-2.1.8.jar:2.1.8] at net.minecraftforge.bootstrap.ForgeBootstrap.main(ForgeBootstrap.java:19) [bootstrap-2.1.8.jar:2.1.8] Caused by: java.lang.IllegalArgumentException: The min values need to be smaller or equals to the max values at TRANSFORMER/[email protected]/net.minecraft.world.phys.shapes.Shapes.box(Shapes.java:50) ~[forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar:?] at TRANSFORMER/[email protected]/net.minecraft.world.level.block.Block.box(Block.java:145) ~[forge-1.21.4-54.0.26_mapped_parchment_2025.01.19-1.21.4-recomp.jar:?] at TRANSFORMER/[email protected]/net.Saveloy_Master.Wonderful_Woodlands.block.custom.SmallShelfridgeBlock.<clinit>(SmallShelfridgeBlock.java:25) ~[main/:?] ... 39 more [22Feb2025 14:13:21.488] [Render thread/ERROR] [net.minecraftforge.fml.javafmlmod.FMLModContainer/]: Exception caught during firing event: Registry Object not present: wonderfulwoodlands:turkey_tail_mushrooms Index: 2 Listeners: 0: NORMAL 1: ASM: net.minecraftforge.registries.DeferredRegister$EventDispatcher@30548a28 handleEvent(Lnet/minecraftforge/registries/RegisterEvent;)V 2: ASM: net.minecraftforge.registries.DeferredRegister$EventDispatcher@446f7e86 handleEvent(Lnet/minecraftforge/registries/RegisterEvent;)V 3: ASM: net.minecraftforge.registries.DeferredRegister$EventDispatcher@523fad04 handleEvent(Lnet/minecraftforge/registries/RegisterEvent;)V java.lang.NullPointerException: Registry Object not present: wonderfulwoodlands:turkey_tail_mushrooms  
    • actually, the thing is that forge is an client that was developed well for mods back in the day, (i know that i  write it 11 years later), and the downside was that forge needs a long of time to load (yes i tested it i need sometimes 2 minutes for optifine in forge to run it) and that will probably not change. if you are 1.16+ i suggest you to use fabric as the load times are lower than 10 seconds and yes i do have a lot of mods there. not to mehtion there is an better optimization client and yes i do get more fps on 1.21 fabric with sodium lithium and much more than with forge and optifine on 1.8.9
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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