This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ---- Minecraft Crash Report ---- | |
| // Don't be sad, have a hug! <3 | |
| Time: 2020-03-16 23:30 | |
| Description: Initializing game | |
| java.lang.NullPointerException: Initializing game | |
| at net.minecraft.client.Minecraft.func_213226_a(Minecraft.java:996) ~[?:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} | |
| at net.minecraft.client.MainWindow.func_198102_b(SourceFile:267) ~[?:?] {re:classloading} | |
| at net.minecraft.client.MainWindow$$Lambda$2012/394591403.invoke(Unknown Source) ~[?:?] {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ---- Minecraft Crash Report ---- | |
| // Shall we play a game? | |
| Time: 2020-03-16 19:31 | |
| Description: Unexpected error | |
| java.lang.StackOverflowError: Unexpected error | |
| at net.minecraftforge.eventbus.EventBus.post(EventBus.java:251) ~[eventbus-2.0.0-milestone.1-service.jar:?] {} | |
| at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:564) ~[?:?] {re:classloading} | |
| at net.minecraftforge.event.ForgeEventFactory.gatherCapabilities(ForgeEventFactory.java:558) ~[?:?] {re:classloading} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ---- Minecraft Crash Report ---- | |
| // You should try our sister game, Minceraft! | |
| Time: 2020-03-15 21:38 | |
| Description: Ticking block entity | |
| java.lang.StackOverflowError: Ticking block entity | |
| at net.minecraft.world.World.func_189509_E(World.java:133) ~[?:?] {re:classloading,pl:accesstransformer:B} | |
| at net.minecraft.world.World.func_175690_a(World.java:715) ~[?:?] {re:classloading,pl:accesstransformer:B} | |
| at net.minecraft.world.chunk.Chunk.func_177424_a(Chunk.java:390) ~[?:?] {re:classloading} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| OreGen: | |
| Two types of Copper exists: Mekanism and WTBW Core - Maybe disable one? The number of copper is too damn high! | |
| Quark: | |
| Quark Vines's textures are broken (Already Reported) | |
| Something is breaking the compass so it points away into infinity instead off the players spawn. (Unknown Culprit, Choco suggested Quark?) | |
| Blur: | |
| Blur whilst sleeping is wierd, though not a bug? (Not a bug, but something to maybe think about blacklisting? not sure really) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| buildscript { | |
| repositories { | |
| maven { url = 'https://files.minecraftforge.net/maven' } | |
| maven { url "https://plugins.gradle.org/m2/" } | |
| jcenter() | |
| mavenCentral() | |
| } | |
| dependencies { | |
| classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true | |
| classpath "com.wynprice.cursemaven:CurseMaven:2.1.1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| buildscript { | |
| repositories { | |
| jcenter() | |
| maven { | |
| name = "forge" | |
| url = "https://files.minecraftforge.net/maven" | |
| } | |
| } | |
| dependencies { | |
| classpath "net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class PortableCraftResultInventory extends CraftResultInventory { | |
| private final InventoryComponent<?> component; | |
| private final NonNullList<ItemStack> result; | |
| private IRecipe<?> recipeUsed; | |
| public PortableCraftResultInventory(InventoryComponent<?> component) { | |
| this.component = component; | |
| this.result = NonNullList.withSize(component.getSlots(), ItemStack.EMPTY); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.teamacronymcoders.essence.container; | |
| import com.hrznstudio.titanium.component.inventory.InventoryComponent; | |
| import com.hrznstudio.titanium.container.impl.BasicInventoryContainer; | |
| import com.teamacronymcoders.essence.items.misc.PortableCrafter; | |
| import net.minecraft.entity.player.PlayerEntity; | |
| import net.minecraft.entity.player.PlayerInventory; | |
| import net.minecraft.entity.player.ServerPlayerEntity; | |
| import net.minecraft.inventory.CraftResultInventory; | |
| import net.minecraft.inventory.CraftingInventory; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.teamacronymcoders.essence.blocks; | |
| import com.hrznstudio.titanium.block.BasicBlock; | |
| import com.hrznstudio.titanium.recipe.generator.TitaniumLootTableProvider; | |
| import com.teamacronymcoders.essence.Essence; | |
| import com.teamacronymcoders.essence.utils.EssenceObjectHolders; | |
| import com.teamacronymcoders.essence.utils.helpers.EssenceColorHelper; | |
| import net.minecraft.block.Block; | |
| import net.minecraft.block.BlockState; | |
| import net.minecraft.block.material.Material; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.teamacronymcoders.essence.blocks; | |
| import com.hrznstudio.titanium.block.BasicBlock; | |
| import com.teamacronymcoders.essence.Essence; | |
| import com.teamacronymcoders.essence.utils.helpers.EssenceColorHelper; | |
| import net.minecraft.block.Block; | |
| import net.minecraft.block.BlockState; | |
| import net.minecraft.block.material.Material; | |
| import net.minecraft.block.material.MaterialColor; | |
| import net.minecraft.entity.item.ItemEntity; |