superckl / BiomeTweaker

Used to tweak various properties of biomes
Other
57 stars 10 forks source link

Script in folder isn't loading #275

Closed jelleybones closed 2 years ago

jelleybones commented 3 years ago

I have two scripts in my script folder one for the Atum dimension and the other is the first example script on the wiki the one I made: desert = forBiomes(47,49) dunes = forBiomes(46) dead = forBiomes(40)

desert.addSpawn("com.github.alexthe666.iceandfire.entity.EntityDeathWorm", "CREATURE", 5, 2, 5) dead.addSpawn("com.github.alexthe666.iceandfire.entity.EntityDeathWorm", "CREATURE", 8, 3, 6) dunes.addSpawn("com.github.alexthe666.iceandfire.entity.EntityDeathWorm", "CREATURE", 6, 2, 6) desert.addSpawn("net.minecraft.entity.passive.EntityPig", "CREATURE", 1, 1, 3) and the one I copied from the wiki:

Specify ids

desert = forBiomes(2) hills = forBiomes(17) river = forBiomes(7)

Add desert to all types so other stuff doesn't appear as often

desert.addToGeneration("WARM", 2000) desert.addToGeneration("COOL", 2000) desert.addToGeneration("DESERT", 2000) desert.addToGeneration("ICY", 2000)

control spawns

desert.removeAllSpawns("CREATURE") desert.addSpawn("net.minecraft.entity.passive.EntityPig", "CREATURE", 60, 1, 3) desert.addSpawn("net.minecraft.entity.passive.EntityChicken", "CREATURE", 100, 2, 2)

repeat for desertHills, not as often tho

hills.addToGeneration("WARM", 200) hills.addToGeneration("COOL", 200) hills.addToGeneration("DESERT", 200) hills.addToGeneration("ICY", 200)

hills.removeAllSpawns("CREATURE") hills.addSpawn("net.minecraft.entity.passive.EntityHorse", "CREATURE", 10, 1, 1)

river spawns

river.removeAllSpawns("CREATURE") river.addSpawn("net.minecraft.entity.passive.EntityCow", "CREATURE", 60, 1, 2) river.addSpawn("net.minecraft.entity.passive.EntitySheep", "CREATURE", 40, 2, 2)

Tweaker.setStage("PRE_INIT") desert.set("reedsPerChunk", 20) desert.set("clayPerChunk", 10) hills.set("clayPerChunk", 10) Tweaker.setStage("FINISHED_LOAD")

Remove other biomes

all = forAllBiomes() all.set("genWeight", 11) all.set("isSpawnBiome", false)

remove all water (keeps lakes tho)

all.registerGenBlockRep("minecraft:water", "minecraft:air")

final weighting - hills about 1/10 the time

desert.set("isSpawnBiome", true) desert.set("genWeight", 50000) hills.set("isSpawnBiome", true) hills.set("genWeight", 5000)

When I launch the game with them in the folder nothing changes. I tried reloading scripts and that does nothing the output file doesn't change either.

jelleybones commented 3 years ago

Here is my log as well if that helps [13:23:53] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [13:23:53] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [13:23:53] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [13:23:53] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2854 for Minecraft 1.12.2 loading [13:23:53] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_51, running on Windows 10:amd64:10.0, installed at C:\Program Files (x86)\Minecraft\runtime\jre-x64 [13:23:53] [main/INFO] [FML]: Searching C:\Users\Gregory\AppData\Roaming.minecraft\mods for mods [13:23:53] [main/INFO] [FML]: Searching C:\Users\Gregory\AppData\Roaming.minecraft\mods\1.12.2 for mods [13:23:53] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in iceandfire-1.9.1-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod. [13:23:53] [main/WARN] [FML]: The coremod iceandfire (com.github.alexthe666.iceandfire.asm.IceAndFirePlugin) is not signed! [13:23:53] [main/WARN] [FML]: The coremod OTGCorePlugin (com.pg85.otg.forge.asm.excluded.launch.OTGCorePlugin) is not signed! [13:23:53] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [13:23:53] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [13:23:53] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [13:23:53] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [13:23:53] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [13:23:55] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557 [13:23:55] [main/INFO] [FML]: Found valid fingerprint for Minecraft. Certificate fingerprint cd99959656f753dc28d863b46769f7f8fbaefcfc [13:23:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [13:23:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [13:23:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [13:23:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [13:23:55] [main/INFO] [BiomeTweakerCore]: Beginning early config parsing... [13:23:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [13:23:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [13:23:55] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [13:23:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [13:23:56] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [13:23:56] [main/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraft.entity.EntityLivingBase : vp [13:23:56] [Client thread/INFO] [net.minecraft.client.Minecraft]: Setting user: Jelleybones4 [13:23:56] [Client thread/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraftforge.registries.GameData : net/minecraftforge/registries/GameData [13:23:57] [Client thread/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraft.world.biome.Biome : anh [13:23:57] [Client thread/INFO] [BiomeTweakerCore]: Attempting to patch class net.minecraft.world.biome.Biome... [13:23:57] [Client thread/INFO] [BiomeTweakerCore]: Sucessfully patched net.minecraft.world.biome.Biome! 0 patches were applied. [13:23:57] [Client thread/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraft.entity.item.EntityXPOrb : vm [13:23:57] [Client thread/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraft.entity.item.EntityItem : acl [13:23:57] [Client thread/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraft.entity.item.EntityFallingBlock : ack [13:23:57] [Client thread/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraft.entity.item.EntityTNTPrimed : acm [13:23:58] [Client thread/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraft.entity.projectile.EntityArrow : aeh [13:23:58] [Client thread/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraft.entity.item.EntityMinecart : afe [13:23:58] [Client thread/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraft.entity.projectile.EntityThrowable : aev [13:23:58] [Client thread/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraft.entity.item.EntityBoat : afd [13:23:58] [Client thread/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraft.entity.projectile.EntityShulkerBullet : aer [13:23:59] [Client thread/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraft.entity.projectile.EntityLlamaSpit : aeo [13:23:59] [Client thread/WARN] [net.minecraft.client.settings.GameSettings]: Skipping bad option: lastServer: [13:23:59] [Client thread/INFO] [net.minecraft.client.Minecraft]: LWJGL Version: 2.9.4 [13:24:00] [Client thread/WARN] [LLibrary Core]: Unable to call Core API! It has not been initialized yet! [13:24:00] [Client thread/INFO] [FML]: -- System Details -- Details: Minecraft Version: 1.12.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 175357896 bytes (167 MB) / 402653184 bytes (384 MB) up to 8589934592 bytes (8192 MB) JVM Flags: 8 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx8G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=35 -XX:G1HeapRegionSize=32M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): llibrary (llibrary-core-1.0.11-1.12.2.jar) net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher OTGCorePlugin (OTG-Core.jar) com.pg85.otg.forge.asm.excluded.OTGClassTransformer BiomeTweakerCore (BiomeTweakerCore-1.12.2-1.0.39.jar) me.superckl.biometweakercore.BiomeTweakerASMTransformer iceandfire (iceandfire-1.9.1-1.12.2.jar) com.github.alexthe666.iceandfire.patcher.IceAndFireRuntimePatcher GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.6.0 NVIDIA 461.40' Renderer: 'GeForce GTX 1660 Ti/PCIe/SSE2' [13:24:01] [Client thread/INFO] [FML]: MinecraftForge v14.23.5.2854 Initialized [13:24:01] [Client thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients. [13:24:01] [Client thread/INFO] [FML]: Invalid recipe found with multiple oredict ingredients in the same ingredient... [13:24:01] [Client thread/INFO] [FML]: Replaced 1227 ore ingredients [13:24:01] [Client thread/WARN] [FML]: Enabling removal of erroring Tile Entities - USE AT YOUR OWN RISK [13:24:01] [Client thread/INFO] [FML]: Searching C:\Users\Gregory\AppData\Roaming.minecraft\mods for mods [13:24:01] [Client thread/INFO] [FML]: Searching C:\Users\Gregory\AppData\Roaming.minecraft\mods\1.12.2 for mods [13:24:02] [Client thread/INFO] [FML]: Forge Mod Loader has identified 10 mods to load [13:24:03] [Client thread/INFO] [FML]: FML has found a non-mod file MathParser.org-mXparser-4.0.0.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible. [13:24:03] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, otgcore, biometweakercore, atum, biometweaker, iceandfire, llibrary] at CLIENT [13:24:03] [Client thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, otgcore, biometweakercore, atum, biometweaker, iceandfire, llibrary] at SERVER [13:24:03] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 603027800 nanos [13:24:04] [Client thread/INFO] [net.minecraft.client.resources.SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Atum 2, FMLFileResourcePack:BiomeTweaker, FMLFileResourcePack:Ice and Fire, FMLFileResourcePack:LLibrary [13:24:04] [Client thread/WARN] [net.minecraft.client.resources.AbstractResourcePack]: ResourcePack: ignored non-lowercase namespace: META-INF in C:\Users\Gregory\AppData\Roaming.minecraft\mods\iceandfire-1.9.1-1.12.2.jar [13:24:04] [Client thread/WARN] [net.minecraft.client.resources.AbstractResourcePack]: ResourcePack: ignored non-lowercase namespace: META-INF in C:\Users\Gregory\AppData\Roaming.minecraft\mods\iceandfire-1.9.1-1.12.2.jar [13:24:05] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [13:24:05] [Client thread/INFO] [FML]: Found 1812 ObjectHolder annotations [13:24:05] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [13:24:05] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [13:24:05] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [13:24:05] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [13:24:05] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null [13:24:05] [Forge Version Check/INFO] [forge.VersionCheck]: [llibrary] Starting version check at https://gist.githubusercontent.com/gegy1000/a6639456aeb8edd92cbf7cbfcf9d65d9/raw/llibrary_updates.json [13:24:06] [Client thread/INFO] [biometweaker]: Beginning script parsing... [13:24:06] [Client thread/INFO] [biometweaker]: Finished script parsing. [13:24:06] [pool-3-thread-1/ERROR] [LLibrary]: ---- Minecraft Crash Report ----

WARNING: coremods are present: llibrary (llibrary-core-1.0.11-1.12.2.jar) OTGCorePlugin (OTG-Core.jar) BiomeTweakerCore (BiomeTweakerCore-1.12.2-1.0.39.jar) iceandfire (iceandfire-1.9.1-1.12.2.jar) Contact their authors BEFORE contacting forge

// Daisy, daisy...

Time: 2/9/21 1:24 PM Description: Failed to receive data from URL: https://gist.githubusercontent.com/gegy1000/7a6d39cf7a2c1f794ffb9037e8146adc/raw/llibrary_patrons.json

java.io.FileNotFoundException: https://gist.githubusercontent.com/gegy1000/7a6d39cf7a2c1f794ffb9037e8146adc/raw/llibrary_patrons.json at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1835) at sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:90) at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1432) at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1430) at java.security.AccessController.doPrivileged(Native Method) at java.security.AccessController.doPrivileged(AccessController.java:713) at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1429) at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) at java.net.URL.openStream(URL.java:1038) at net.ilexiconn.llibrary.server.util.WebUtils.readURL(WebUtils.java:60) at net.ilexiconn.llibrary.server.util.WebUtils.lambda$readURLAsync$0(WebUtils.java:105) at net.ilexiconn.llibrary.server.util.WebUtils$$Lambda$122/1582048929.call(Unknown Source) at com.google.common.util.concurrent.TrustedListenableFutureTask$TrustedFutureInterruptibleTask.runInterruptibly(TrustedListenableFutureTask.java:111) at com.google.common.util.concurrent.InterruptibleTask.run(InterruptibleTask.java:58) at com.google.common.util.concurrent.TrustedListenableFutureTask.run(TrustedListenableFutureTask.java:75) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:745)

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

-- System Details -- Details: Minecraft Version: 1.12.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 582400456 bytes (555 MB) / 805306368 bytes (768 MB) up to 8589934592 bytes (8192 MB) JVM Flags: 8 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx8G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=35 -XX:G1HeapRegionSize=32M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.42 Powered by Forge 14.23.5.2854 10 mods loaded, 10 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

| State | ID               | Version      | Source                          | Signature                                |
|:----- |:---------------- |:------------ |:------------------------------- |:---------------------------------------- |
| LCH   | minecraft        | 1.12.2       | minecraft.jar                   | None                                     |
| LCH   | mcp              | 9.42         | minecraft.jar                   | None                                     |
| LCH   | FML              | 8.0.99.99    | forge-1.12.2-14.23.5.2854.jar   | e3c3d50c7c986df74c645c0ac54639741c90a557 |
| LCH   | forge            | 14.23.5.2854 | forge-1.12.2-14.23.5.2854.jar   | e3c3d50c7c986df74c645c0ac54639741c90a557 |
| LCH   | otgcore          | 1.12.2-v9.3  | minecraft.jar                   | None                                     |
| LCH   | biometweakercore | 1.0.39       | minecraft.jar                   | None                                     |
| LCH   | atum             | 2.0.16       | Atum-1.12.2-2.0.16.jar          | None                                     |
| LCH   | biometweaker     | 3.2.369      | BiomeTweaker-1.12.2-3.2.369.jar | 631f326344f7f5fd7df7eb940760ebd52b7c9c17 |
| LC    | llibrary         | 1.7.19       | llibrary-1.7.19-1.12.2 (1).jar  | b9f30a813bee3b9dd5652c460310cfcd54f6b7ec |
| LC    | iceandfire       | 1.9.1        | iceandfire-1.9.1-1.12.2.jar     | None                                     |

Loaded coremods (and transformers): 

llibrary (llibrary-core-1.0.11-1.12.2.jar) net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher OTGCorePlugin (OTG-Core.jar) com.pg85.otg.forge.asm.excluded.OTGClassTransformer BiomeTweakerCore (BiomeTweakerCore-1.12.2-1.0.39.jar) me.superckl.biometweakercore.BiomeTweakerASMTransformer iceandfire (iceandfire-1.9.1-1.12.2.jar) com.github.alexthe666.iceandfire.patcher.IceAndFireRuntimePatcher GL info: ERROR RuntimeException: No OpenGL context found in the current thread. [13:24:06] [Client thread/INFO] [LLibrary]: TabulaModelHandler: Domain llibrary has been added. [13:24:06] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name lectern, expected iceandfire. This could be a intended override, but in most cases indicates a broken mod. [13:24:06] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name podium, expected iceandfire. This could be a intended override, but in most cases indicates a broken mod. [13:24:07] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name egginice, expected iceandfire. This could be a intended override, but in most cases indicates a broken mod. [13:24:07] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name pixie_house, expected iceandfire. This could be a intended override, but in most cases indicates a broken mod. [13:24:07] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name jar, expected iceandfire. This could be a intended override, but in most cases indicates a broken mod. [13:24:07] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name dread_portal, expected iceandfire. This could be a intended override, but in most cases indicates a broken mod. [13:24:07] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name dread_spawner, expected iceandfire. This could be a intended override, but in most cases indicates a broken mod. [13:24:07] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name dummygorgonheadidle, expected iceandfire. This could be a intended override, but in most cases indicates a broken mod. [13:24:07] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name dummygorgonheadactive, expected iceandfire. This could be a intended override, but in most cases indicates a broken mod. [13:24:07] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name myrmexcocoon, expected iceandfire. This could be a intended override, but in most cases indicates a broken mod. [13:24:07] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name dragonforge, expected iceandfire. This could be a intended override, but in most cases indicates a broken mod. [13:24:07] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name dragonforgeinput, expected iceandfire. This could be a intended override, but in most cases indicates a broken mod. [13:24:07] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name dragonforgebrick, expected iceandfire. This could be a intended override, but in most cases indicates a broken mod. [13:24:07] [Client thread/INFO] [Ice And Fire]: A raven flies from the north to the sea [13:24:07] [Client thread/INFO] [Ice And Fire]: A dragon whispers her name in the east [13:24:07] [Client thread/INFO] [FML]: Applying holder lookups [13:24:07] [Client thread/INFO] [FML]: Holder lookups applied [13:24:07] [Client thread/INFO] [FML]: Applying holder lookups [13:24:07] [Client thread/INFO] [FML]: Holder lookups applied [13:24:08] [Client thread/INFO] [FML]: Applying holder lookups [13:24:08] [Client thread/INFO] [FML]: Holder lookups applied [13:24:08] [Client thread/INFO] [FML]: Applying holder lookups [13:24:08] [Client thread/INFO] [FML]: Holder lookups applied [13:24:08] [Client thread/INFO] [FML]: Injecting itemstacks [13:24:08] [Client thread/INFO] [FML]: Itemstack injection complete [13:24:09] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Starting up SoundSystem... [13:24:09] [Thread-6/INFO] [net.minecraft.client.audio.SoundManager]: Initializing LWJGL OpenAL [13:24:09] [Thread-6/INFO] [net.minecraft.client.audio.SoundManager]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [13:24:09] [Thread-6/INFO] [net.minecraft.client.audio.SoundManager]: OpenAL initialized. [13:24:09] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Sound engine started [13:24:12] [Client thread/INFO] [FML]: Max texture size: 16384 [13:24:15] [Client thread/INFO] [net.minecraft.client.renderer.texture.TextureMap]: Created: 1024x512 textures-atlas [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name stick, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name torch, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name ladder, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name chest, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name trapdoor, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name orange_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name magenta_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name light_blue_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name yellow_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name lime_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name pink_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name gray_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name light_gray_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name cyan_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name purple_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name blue_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name brown_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name green_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name red_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name black_wool, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name stone_sword, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name stone_shovel, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name stone_pickaxe, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name stone_hoe, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name stone_axe, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/WARN] [FML]: Potentially Dangerous alternative prefix minecraft for name furnace, expected atum. This could be a intended override, but in most cases indicates a broken mod. [13:24:17] [Client thread/INFO] [FML]: Applying holder lookups [13:24:17] [Client thread/INFO] [FML]: Holder lookups applied [13:24:17] [Client thread/INFO] [Atum2]: Created: 32x32 particle-atlas textures [13:24:17] [Client thread/WARN] [net.minecraft.entity.passive.EntityVillager]: PriceRange(2, 1) invalid, 1 smaller than 2 [13:24:17] [Client thread/WARN] [net.minecraft.entity.passive.EntityVillager]: PriceRange(4, 1) invalid, 1 smaller than 4 [13:24:17] [Client thread/WARN] [net.minecraft.entity.passive.EntityVillager]: PriceRange(10, 1) invalid, 1 smaller than 10 [13:24:17] [Client thread/WARN] [net.minecraft.entity.passive.EntityVillager]: PriceRange(9, 1) invalid, 1 smaller than 9 [13:24:17] [Client thread/WARN] [net.minecraft.entity.passive.EntityVillager]: PriceRange(3, 2) invalid, 2 smaller than 3 [13:24:17] [Client thread/INFO] [Ice And Fire]: The watcher waits on the northern wall [13:24:17] [Client thread/INFO] [Ice And Fire]: A daughter picks up a warrior's sword [13:24:17] [Client thread/INFO] [FML]: Injecting itemstacks [13:24:17] [Client thread/INFO] [FML]: Itemstack injection complete [13:24:17] [Client thread/INFO] [STDOUT]: [com.pg85.otg.forge.asm.excluded.OTGClassTransformer:transform:91]: OTG-Core transforming: net.minecraftforge.common.DimensionManager : net/minecraftforge/common/DimensionManager [13:24:18] [Client thread/INFO] [Ice And Fire]: A brother bound to a love he must hide [13:24:18] [Client thread/INFO] [Ice And Fire]: The younger's armor is worn in the mind [13:24:18] [Client thread/INFO] [Ice And Fire]: A cold iron throne holds a boy barely grown [13:24:18] [Client thread/INFO] [Ice And Fire]: And now it is known [13:24:18] [Client thread/INFO] [Ice And Fire]: A claim to the prize, a crown laced in lies [13:24:18] [Client thread/INFO] [Ice And Fire]: You win or you die [13:24:18] [Client thread/INFO] [Ice And Fire]: Damn season 8 really sucked didn't it [13:24:18] [Client thread/INFO] [biometweaker]: Generating Biome status report... [13:24:19] [Client thread/INFO] [biometweaker]: Generating LivingEntity status report... [13:24:20] [Client thread/INFO] [biometweaker]: Generating Dimension status report... [13:24:20] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 10 mods [13:24:20] [Client thread/WARN] [net.minecraft.client.settings.GameSettings]: Skipping bad option: lastServer: [13:24:20] [Client thread/INFO] [com.mojang.text2speech.NarratorWindows]: Narrator library for x64 successfully loaded [13:24:34] [Client thread/INFO] [biometweaker]: Beginning script parsing... [13:24:34] [Client thread/INFO] [biometweaker]: Finished script parsing. [13:24:35] [Client thread/INFO] [biometweaker]: Generating Biome status report... [13:24:36] [Client thread/INFO] [biometweaker]: Generating LivingEntity status report... [13:24:36] [Client thread/INFO] [biometweaker]: Generating Dimension status report...

[13:24:38] [Client thread/INFO] [net.minecraft.client.audio.SoundManager]: SoundSystem shutting down... [13:24:38] [Client thread/WARN] [net.minecraft.client.audio.SoundManager]: Author: Paul Lamb, www.paulscode.com

superckl commented 2 years ago

Closed due to age. Please comment if this is still an issue.