Jump to content

[1.9.4] ItemStack/drops <-> entity via LootTables


xilef11

Recommended Posts

Hello

 

I need to go from an ItemStack to a list of mobs that might drop it. I currently have this very hacky way of building an Item->entity map, and I want to switch it to Loot Tables for everyone's sanity ;)

 

I asked the author of NotEnoughResources, and he pointed me to this and this, but I'm having a hard time figuring it out.

 

Thanks for the help

Link to comment
Share on other sites

I guess I'll keep my catch(NoClassDefFoundError e) then :(

 

My issue now seems to be when should I build my map. I was doing it on WorldEvent.Load, but I get a NPE when grabbing the LootTable

 

Description: Exception in server tick loop

java.lang.NullPointerException: Exception in server tick loop
at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:213)
at com.google.common.cache.LocalCache.get(LocalCache.java:3933)
at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938)
at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821)
at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827)
at net.minecraft.world.storage.loot.LootTableManager.getLootTableFromLocation(LootTableManager.java:39)
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.getEntityLoot_Table(RuneResurrection.java:167)
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.initDropsTable_entity(RuneResurrection.java:144)
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.initDropsTable(RuneResurrection.java:121)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_11_RuneResurrection_initDropsTable_Load.invoke(.dynamic)
at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:49)
at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:140)
at net.minecraft.server.integrated.IntegratedServer.loadAllWorlds(IntegratedServer.java:96)
at net.minecraft.server.integrated.IntegratedServer.startServer(IntegratedServer.java:123)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:494)
at java.lang.Thread.run(Unknown Source)

Link to comment
Share on other sites

Well, particles in particular should not be in the list. Actually, anything that is in there and causes a client class to load should not be in there...

It seems to be happening I've had two bug reports with a crashlog like this on a dedicated server (Forge 1935 and 1937), the line from my mod being a call to EntityList#createEntityByName. couldn't reproduce them though

You are using a LoadingCache already. It will dynamically load the stuff when it's first needed, no need to preload anything.

 

I'm not sure I completely understand what you mean here...

 

LootTables provide the entity -> drops information. Because what I need is the drops -> entity, I iterate through all living entities to get their possible drops and build a map for [item name + meta] ->

Link to comment
Share on other sites

I'll look into that EnderIO.weather_rocket . Also, I plan to optionally load the map from a JSON file to allow pack makers/users to tweak it if necessary. Do you think there would be a significant performance difference between loading the JSON and iterating through the LootTables? I want to figure out what should be the default

 

Also, I'm getting that NPE even when initialising the map lazily:

2016-06-03 14:44:16,216 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-06-03 14:44:16,216 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[14:44:16] [main/INFO] [GradleStart]: Extra: []
[14:44:16] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Felix/.gradle/caches/minecraft/assets, --assetIndex, 1.9, --accessToken{REDACTED}, --version, 1.9.4, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[14:44:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[14:44:16] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[14:44:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[14:44:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[14:44:16] [main/INFO] [FML]: Forge Mod Loader version 12.17.0.1937 for Minecraft 1.9.4 loading
[14:44:16] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_91, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_91
[14:44:16] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[14:44:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[14:44:16] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[14:44:16] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[14:44:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[14:44:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[14:44:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[14:44:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[14:44:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[14:44:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[14:44:16] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[14:44:19] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[14:44:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[14:44:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[14:44:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[14:44:19] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[14:44:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[14:44:20] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
2016-06-03 14:44:20,849 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-06-03 14:44:20,890 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
2016-06-03 14:44:20,890 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream
[14:44:21] [Client thread/INFO]: Setting user: Player919
[14:44:28] [Client thread/INFO]: LWJGL Version: 2.9.4
[14:44:29] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:202]: ---- Minecraft Crash Report ----
// I let you down. Sorry 

Time: 16-06-03 14:44
Description: Loading screen debug info

This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- System Details --
Details:
Minecraft Version: 1.9.4
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.8.0_91, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 330924416 bytes (315 MB) / 578289664 bytes (551 MB) up to 1838153728 bytes (1753 MB)
JVM Flags: 0 total; 
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.4229' Renderer: 'Intel(R) HD Graphics 4000'
[14:44:30] [Client thread/INFO] [FML]: MinecraftForge v12.17.0.1937 Initialized
[14:44:30] [Client thread/INFO] [FML]: Replaced 232 ore recipes
[14:44:30] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[14:44:30] [Client thread/INFO] [FML]: Searching C:\Users\Felix\Documents\GitHub\runesofwizardry-classics\run\mods for mods
[14:44:33] [Client thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[14:44:33] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, runesofwizardry_classics, runesofwizardry] at CLIENT
[14:44:33] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, runesofwizardry_classics, runesofwizardry] at SERVER
[14:44:35] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Runes of Wizardry - Classic Dusts Pack, FMLFileResourcePack:Runes of Wizardry
[14:44:35] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[14:44:35] [Client thread/INFO] [FML]: Found 418 ObjectHolder annotations
[14:44:35] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[14:44:35] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[14:44:35] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[14:44:35] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[14:44:36] [Client thread/INFO] [runesofwizardry]: Creating StateMapper for dust_inert_storage
[14:44:36] [Client thread/INFO] [runesofwizardry]: Creating StateMapper for dust_plant_storage
[14:44:36] [Client thread/INFO] [runesofwizardry]: Creating StateMapper for dust_aqua_storage
[14:44:36] [Client thread/INFO] [runesofwizardry]: Creating StateMapper for dust_fire_storage
[14:44:36] [Client thread/INFO] [runesofwizardry]: Creating StateMapper for dust_glowstone_storage
[14:44:36] [Client thread/INFO] [runesofwizardry]: Creating StateMapper for dust_ender_storage
[14:44:36] [Client thread/INFO] [runesofwizardry_classics]: Registering Classic dusts
[14:44:36] [Client thread/INFO] [runesofwizardry]: Creating StateMapper for dust_classic_storage
[14:44:36] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: BETA_OUTDATED Target: 12.17.0.1940
[14:44:36] [Client thread/INFO] [runesofwizardry_classics]: Initialising config
[14:44:36] [Client thread/INFO] [FML]: Applying holder lookups
[14:44:36] [Client thread/INFO] [FML]: Holder lookups applied
[14:44:36] [Client thread/INFO] [FML]: Injecting itemstacks
[14:44:36] [Client thread/INFO] [FML]: Itemstack injection complete
[14:44:56] [sound Library Loader/INFO]: Starting up SoundSystem...
[14:44:57] [Thread-8/INFO]: Initializing LWJGL OpenAL
[14:44:57] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[14:44:57] [Thread-8/INFO]: OpenAL initialized.
[14:44:57] [sound Library Loader/INFO]: Sound engine started
[14:45:03] [Client thread/INFO] [FML]: Max texture size: 8192
[14:45:03] [Client thread/INFO]: Created: 16x16 textures-atlas
[14:45:06] [Client thread/INFO] [runesofwizardry_classics]: Registering dust recipes
[14:45:06] [Client thread/INFO] [FML]: Injecting itemstacks
[14:45:06] [Client thread/INFO] [FML]: Itemstack injection complete
[14:45:06] [Client thread/INFO] [FML]:   Unknown recipe class! com.zpig333.runesofwizardry.recipe.RecipeDustPouch Modder please refer to net.minecraftforge.oredict.RecipeSorter
[14:45:06] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
[14:45:06] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Runes of Wizardry - Classic Dusts Pack, FMLFileResourcePack:Runes of Wizardry
[14:45:17] [Client thread/INFO]: SoundSystem shutting down...
[14:45:17] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[14:45:17] [sound Library Loader/INFO]: Starting up SoundSystem...
[14:45:18] [Thread-10/INFO]: Initializing LWJGL OpenAL
[14:45:18] [Thread-10/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[14:45:18] [Thread-10/INFO]: OpenAL initialized.
[14:45:18] [sound Library Loader/INFO]: Sound engine started
[14:45:23] [Client thread/INFO] [FML]: Max texture size: 8192
[14:45:23] [Client thread/INFO]: Created: 1024x512 textures-atlas
[14:45:31] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id
[14:45:40] [server thread/INFO]: Starting integrated minecraft server version 1.9.4
[14:45:40] [server thread/INFO]: Generating keypair
[14:45:40] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance
[14:45:40] [server thread/INFO] [FML]: Applying holder lookups
[14:45:40] [server thread/INFO] [FML]: Holder lookups applied
[14:45:40] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@9bb9daa)
[14:45:41] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@9bb9daa)
[14:45:41] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@9bb9daa)
[14:45:41] [server thread/INFO]: Preparing start region for level 0
[14:45:42] [server thread/INFO]: Preparing spawn area: 29%
[14:45:42] [server thread/INFO]: Changing view distance to 12, from 10
[14:45:45] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[14:45:45] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[14:45:45] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : runesofwizardry@1.9.4-0.6.5,FML@8.0.99.99,runesofwizardry_classics@@VERSION@,Forge@12.17.0.1937,mcp@9.19
[14:45:45] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[14:45:45] [server thread/INFO] [FML]: [server thread] Server side modded connection established
[14:45:45] [server thread/INFO]: Player919[local:E:0eb46186] logged in with entity id 16 at (1723.2736775815363, 66.0, 58.604934397496514)
[14:45:45] [server thread/INFO]: Player919 joined the game
[14:45:46] [server thread/INFO]: Saving and pausing game...
[14:45:46] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[14:45:47] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[14:45:47] [server thread/INFO]: Saving chunks for level 'New World'/The End
[14:45:47] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@19db55b2[id=fd31ce15-3baa-3523-8ee4-307bb606ee39,name=Player919,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:65) ~[YggdrasilAuthenticationService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:175) [YggdrasilMinecraftSessionService.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:59) [YggdrasilMinecraftSessionService$1.class:?]
at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:56) [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:165) [YggdrasilMinecraftSessionService.class:?]
at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3041) [Minecraft.class:?]
at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:131) [skinManager$3.class:?]
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) [?:1.8.0_91]
at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_91]
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_91]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_91]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_91]
[14:45:51] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of Dawn
[14:45:51] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of Dusk
[14:45:52] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Fire Trap Rune
[14:45:52] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Lightning Trap Rune
[14:45:52] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Poison Trap Rune
[14:45:53] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of Detonation
[14:45:54] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of Entrapment
[14:45:55] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of Locked Time
[14:45:55] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of the Void
[14:45:57] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of the Barrier
[14:45:57] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of Wisdom
[14:45:58] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of Speed
[14:45:58] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of Compression
[14:45:58] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of the Hellstorm
[14:45:59] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of Rebirth
[14:45:59] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of Resurrection
[14:46:00] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of Power Distribution
[14:46:00] [Netty Local Client IO #0/INFO]: [CHAT] [Runic Dictionary] Selected: Rune of Resurrection
[14:46:03] [server thread/INFO] [runesofwizardry]: Import Pattern: Looking at block: tile.grass at BlockPos{x=1737, y=65, z=50} facing: east
[14:46:03] [server thread/INFO] [runesofwizardry]: Import Pattern: Looking at block: tile.runesofwizardry_dust_placed at BlockPos{x=1737, y=66, z=50} facing: east
[14:46:06] [server thread/INFO] [runesofwizardry]: Finished finding dust pattern. Found 9 blocks in 21 calls
[14:46:06] [server thread/INFO] [runesofwizardry]: Converting to array: there are 3 horizontal blocks and 3 vertical blocks. NW corner is BlockPos{x=1736, y=66, z=49} and SE corner is BlockPos{x=1738, y=66, z=51}
[14:46:06] [server thread/INFO] [runesofwizardry]: Found sacrifice: []
[14:46:06] [server thread/INFO] [runesofwizardry]: Top-left block is :BlockPos{x=1738, y=66, z=49} and entity Pos is: BlockPos{x=1737, y=66, z=50}
[14:46:06] [server thread/INFO] [runesofwizardry]: Formed Rune: runesofwizardry_classics.rune.resurrection facing east by Player919
[14:46:08] [server thread/INFO]: Player919 has just earned the achievement [Taking Inventory]
[14:46:08] [Client thread/INFO]: [CHAT] Player919 has just earned the achievement [Taking Inventory]
[14:46:28] [server thread/INFO] [runesofwizardry_classics]: Creating drop table for world: OVERWORLD
[14:46:32] [server thread/ERROR]: Encountered an unexpected exception
net.minecraft.util.ReportedException: Ticking block entity
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:787) ~[MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:685) ~[MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155) ~[integratedServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:534) [MinecraftServer.class:?]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_91]
Caused by: java.lang.NullPointerException
at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:213) ~[guava-17.0.jar:?]
at com.google.common.cache.LocalCache.get(LocalCache.java:3933) ~[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 net.minecraft.world.storage.loot.LootTableManager.getLootTableFromLocation(LootTableManager.java:39) ~[LootTableManager.class:?]
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.getEntityLoot_Table(RuneResurrection.java:172) ~[RuneResurrection.class:?]
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.initDropsTable_entity(RuneResurrection.java:149) ~[RuneResurrection.class:?]
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.initDropsTable(RuneResurrection.java:126) ~[RuneResurrection.class:?]
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.entityIDFromDrops(RuneResurrection.java:213) ~[RuneResurrection.class:?]
at xilef11.mc.runesofwizardry_classics.runes.entity.RuneEntityResurrection.update(RuneEntityResurrection.java:51) ~[RuneEntityResurrection.class:?]
at com.zpig333.runesofwizardry.tileentity.TileEntityDustActive.update(TileEntityDustActive.java:51) ~[TileEntityDustActive.class:?]
at net.minecraft.world.World.updateEntities(World.java:1935) ~[World.class:?]
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:644) ~[WorldServer.class:?]
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:781) ~[MinecraftServer.class:?]
... 4 more
[14:46:32] [server thread/ERROR]: This crash report has been saved to: C:\Users\Felix\Documents\GitHub\runesofwizardry-classics\run\.\crash-reports\crash-2016-06-03_14.46.32-server.txt
[14:46:32] [server thread/INFO]: Stopping server
[14:46:32] [server thread/INFO]: Saving players
[14:46:32] [server thread/INFO]: Saving worlds
[14:46:32] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[14:46:32] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:646]: ---- Minecraft Crash Report ----
// Hi. I'm Minecraft, and I'm a crashaholic.

Time: 16-06-03 14:46
Description: Ticking block entity

java.lang.NullPointerException: Ticking block entity
at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:213)
at com.google.common.cache.LocalCache.get(LocalCache.java:3933)
at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938)
at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821)
at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827)
at net.minecraft.world.storage.loot.LootTableManager.getLootTableFromLocation(LootTableManager.java:39)
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.getEntityLoot_Table(RuneResurrection.java:172)
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.initDropsTable_entity(RuneResurrection.java:149)
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.initDropsTable(RuneResurrection.java:126)
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.entityIDFromDrops(RuneResurrection.java:213)
at xilef11.mc.runesofwizardry_classics.runes.entity.RuneEntityResurrection.update(RuneEntityResurrection.java:51)
at com.zpig333.runesofwizardry.tileentity.TileEntityDustActive.update(TileEntityDustActive.java:51)
at net.minecraft.world.World.updateEntities(World.java:1935)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:644)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:781)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:685)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:534)
at java.lang.Thread.run(Unknown Source)


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- Head --
Thread: Client thread
Stacktrace:
at com.google.common.base.Preconditions.checkNotNull(Preconditions.java:213)
at com.google.common.cache.LocalCache.get(LocalCache.java:3933)
at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938)
at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821)
at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827)
at net.minecraft.world.storage.loot.LootTableManager.getLootTableFromLocation(LootTableManager.java:39)
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.getEntityLoot_Table(RuneResurrection.java:172)
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.initDropsTable_entity(RuneResurrection.java:149)
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.initDropsTable(RuneResurrection.java:126)
at xilef11.mc.runesofwizardry_classics.runes.RuneResurrection.entityIDFromDrops(RuneResurrection.java:213)
at xilef11.mc.runesofwizardry_classics.runes.entity.RuneEntityResurrection.update(RuneEntityResurrection.java:51)
at com.zpig333.runesofwizardry.tileentity.TileEntityDustActive.update(TileEntityDustActive.java:51)

-- Block entity being ticked --
Details:
Name: te_dust_active // com.zpig333.runesofwizardry.tileentity.TileEntityDustActive
Block type: ID #215 (tile.runesofwizardry_dust_placed // com.zpig333.runesofwizardry.block.BlockDustPlaced)
Block data value: 1 / 0x1 / 0b0001
Block location: World: (1737,66,50), Chunk: (at 9,4,2 in 108,3; contains blocks 1728,0,48 to 1743,255,63), Region: (3,0; contains chunks 96,0 to 127,31, blocks 1536,0,0 to 2047,255,511)
Actual block type: ID #215 (tile.runesofwizardry_dust_placed // com.zpig333.runesofwizardry.block.BlockDustPlaced)
Actual block data value: 1 / 0x1 / 0b0001
Stacktrace:
at net.minecraft.world.World.updateEntities(World.java:1935)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:644)

-- Affected level --
Details:
Level name: New World
All players: 1 total; [EntityPlayerMP['Player919'/16, l='New World', x=1736,08, y=66,00, z=50,63]]
Chunk stats: ServerChunkCache: 625 Drop: 0
Level seed: -894440548156511612
Level generator: ID 01 - flat, ver 0. Features enabled: false
Level generator options: 3;minecraft:bedrock,64*minecraft:dirt,minecraft:grass;1;village
Level spawn location: World: (1719,4,72), Chunk: (at 7,0,8 in 107,4; contains blocks 1712,0,64 to 1727,255,79), Region: (3,0; contains chunks 96,0 to 127,31, blocks 1536,0,0 to 2047,255,511)
Level time: 25399 game time, 2726 day time
Level dimension: 0
Level storage version: 0x04ABD - Anvil
Level weather: Rain time: 89048 (now: false), thunder time: 28693 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true
Stacktrace:
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:781)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:685)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:155)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:534)
at java.lang.Thread.run(Unknown Source)

-- System Details --
Details:
Minecraft Version: 1.9.4
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.8.0_91, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 603581296 bytes (575 MB) / 1080033280 bytes (1030 MB) up to 1838153728 bytes (1753 MB)
JVM Flags: 0 total; 
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP 9.28 Powered by Forge 12.17.0.1937 5 mods loaded, 5 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
UCHIJAAAA	mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) 
UCHIJAAAA	FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.9.4-12.17.0.1937.jar) 
UCHIJAAAA	Forge{12.17.0.1937} [Minecraft Forge] (forgeSrc-1.9.4-12.17.0.1937.jar) 
UCHIJAAAA	runesofwizardry{1.9.4-0.6.5} [Runes of Wizardry] (Runes-of-Wizardry-1.9.4-0.6.5-deobf.jar) 
UCHIJAAAA	runesofwizardry_classics{@VERSION@} [Runes of Wizardry - Classic Dusts Pack] (bin) 
Loaded coremods (and transformers): 
GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.
Profiler Position: N/A (disabled)
Player Count: 1 / 8; [EntityPlayerMP['Player919'/16, l='New World', x=1736,08, y=66,00, z=50,63]]
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'
[14:46:32] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:646]: #@!@# Game crashed! Crash report saved to: #@!@# .\crash-reports\crash-2016-06-03_14.46.32-server.txt
[14:46:32] [Client thread/INFO] [FML]: Waiting for the server to terminate/save.
[14:46:32] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[14:46:32] [server thread/INFO]: Saving chunks for level 'New World'/The End
[14:46:32] [server thread/INFO] [FML]: Unloading dimension 0
[14:46:32] [server thread/INFO] [FML]: Unloading dimension -1
[14:46:32] [server thread/INFO] [FML]: Unloading dimension 1
[14:46:32] [server thread/INFO] [FML]: Applying holder lookups
[14:46:32] [server thread/INFO] [FML]: Holder lookups applied
[14:46:32] [server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.
[14:46:32] [Client thread/INFO] [FML]: Server terminated.
AL lib: (EE) alc_cleanup: 1 device not closed

Code

 

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.