Jump to content

Basic GUI causes NullPointerException [Fixed it]


ConsumerJunk

Recommended Posts

I fixed it. I thought the problem was the modified GUI class, when in all reality it was the GUI switching which was the problem.

Spoiler

 

So I've been working on a mod, and I am trying to add some extra functionality to the chat GUI. I was trying to copy the ChatGUI class and add the line to it. Even when I copied the code exactly I still get the error below. After messing around with that, I decided to create a new GUI to see what I was doing wrong. I have had no success so far because of this NullPointerException:


java.lang.NullPointerException: Updating screen events

Here is the code that I am using. I have looked online for this and it's possible solutions, but cannot find anything even mentioning it.

Spoiler

 



package com.consumerjunk.spellcheck.gui;

import java.io.IOException;

import org.lwjgl.input.Keyboard;
import org.objectweb.asm.tree.MultiANewArrayInsnNode;

import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.FontRenderer;
import net.minecraft.client.gui.GuiScreen;
import net.minecraft.util.ITabCompleter;
import net.minecraft.util.TabCompleter;
import scala.collection.parallel.ParIterableLike.Min;

public class GuiSpellCheckChat extends GuiScreen {
	
	private TabCompleter tabCompleter;
	
	FontRenderer fontRenderer = Minecraft.getMinecraft().fontRenderer;
	
	@Override
	public void initGui() {
		Keyboard.enableRepeatEvents(true);
		super.initGui();
	}
	
	@Override
	public void updateScreen() {
		Keyboard.enableRepeatEvents(true);
		super.updateScreen();
	}
	
	@Override
	public void drawScreen(int mouseX, int mouseY, float partialTicks) {
		
		super.drawScreen(mouseX, mouseY, partialTicks);
	}
	
	@Override
	protected void keyTyped(char typedChar, int keyCode) throws IOException {
		super.keyTyped(typedChar, keyCode);
		this.tabCompleter.resetRequested();
	}

}

 

 

 

Here is also the full crash report.

Spoiler


2018-08-18 19:03:12,841 main WARN Disabling terminal, you're running in an unsupported environment.
[19:03:12] [main/INFO] [GradleStart]: Extra: []
[19:03:12] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/CJ/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[19:03:12] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[19:03:13] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[19:03:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[19:03:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[19:03:13] [main/INFO] [FML]: Forge Mod Loader version 14.23.4.2705 for Minecraft 1.12.2 loading
[19:03:13] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_121, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_121
[19:03:13] [main/ERROR] [FML]: Apache Maven library folder was not in the format expected. Using default libraries directory.
[19:03:13] [main/ERROR] [FML]: Full: C:\Users\CJ\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar
[19:03:13] [main/ERROR] [FML]: Trimmed: c:/users/cj/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/
[19:03:13] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[19:03:13] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin
[19:03:13] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin
[19:03:13] [main/INFO] [FML]: Searching C:\Users\CJ\Desktop\Spellcheck mod dev\run\.\mods for mods
[19:03:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[19:03:13] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[19:03:13] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[19:03:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[19:03:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[19:03:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[19:03:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[19:03:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[19:03:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[19:03:15] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[19:03:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[19:03:15] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[19:03:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[19:03:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[19:03:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[19:03:16] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[19:03:17] [main/INFO] [net.minecraft.client.Minecraft]: Setting user: Player479
[19:03:21] [main/WARN] [net.minecraft.client.settings.GameSettings]: Skipping bad option: lastServer:
[19:03:21] [main/INFO] [net.minecraft.client.Minecraft]: LWJGL Version: 2.9.4
[19:03:22] [main/INFO] [FML]: -- System Details --
Details:
    Minecraft Version: 1.12.2
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 1.8.0_121, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 770718752 bytes (735 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
    JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: 
    Loaded coremods (and transformers): 
    GL info: ' Vendor: 'Intel' Version: '4.0.0 - Build 10.18.10.4358' Renderer: 'Intel(R) HD Graphics 4000'
[19:03:22] [main/INFO] [FML]: MinecraftForge v14.23.4.2705 Initialized
[19:03:22] [main/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[19:03:22] [main/INFO] [FML]: Replaced 1036 ore ingredients
[19:03:22] [main/INFO] [FML]: Searching C:\Users\CJ\Desktop\Spellcheck mod dev\run\.\mods for mods
[19:03:23] [main/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[19:03:24] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, spellcheckmod] at CLIENT
[19:03:24] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, spellcheckmod] at SERVER
[19:03:24] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 75711798 nanos
[19:03:24] [main/INFO] [net.minecraft.client.resources.SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:SpellCheck mod
[19:03:25] [main/INFO] [FML]: Processing ObjectHolder annotations
[19:03:25] [main/INFO] [FML]: Found 1168 ObjectHolder annotations
[19:03:25] [main/INFO] [FML]: Identifying ItemStackHolder annotations
[19:03:25] [main/INFO] [FML]: Found 0 ItemStackHolder annotations
[19:03:25] [main/INFO] [FML]: Configured a dormant chunk cache size of 0
[19:03:25] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[19:03:25] [main/INFO] [spellcheckmod]: File copy succeeded
[19:03:25] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null
[19:03:25] [main/INFO] [STDOUT]: [com.consumerjunk.spellcheck.SpellCheckManager:loadWordList:25]: abdicating
[19:03:25] [main/INFO] [spellcheckmod]: Dictionary loading successful
[19:03:25] [main/INFO] [FML]: Applying holder lookups
[19:03:25] [main/INFO] [FML]: Holder lookups applied
[19:03:25] [main/INFO] [FML]: Applying holder lookups
[19:03:25] [main/INFO] [FML]: Holder lookups applied
[19:03:25] [main/INFO] [FML]: Applying holder lookups
[19:03:25] [main/INFO] [FML]: Holder lookups applied
[19:03:25] [main/INFO] [FML]: Applying holder lookups
[19:03:25] [main/INFO] [FML]: Holder lookups applied
[19:03:25] [main/INFO] [FML]: Injecting itemstacks
[19:03:25] [main/INFO] [FML]: Itemstack injection complete
[19:03:29] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Starting up SoundSystem...
[19:03:29] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: Initializing LWJGL OpenAL
[19:03:29] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[19:03:29] [Thread-5/INFO] [net.minecraft.client.audio.SoundManager]: OpenAL initialized.
[19:03:30] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Sound engine started
[19:03:36] [main/INFO] [FML]: Max texture size: 8192
[19:03:36] [main/INFO] [net.minecraft.client.renderer.texture.TextureMap]: Created: 512x512 textures-atlas
[19:03:37] [main/INFO] [FML]: Applying holder lookups
[19:03:37] [main/INFO] [FML]: Holder lookups applied
[19:03:37] [main/INFO] [FML]: Injecting itemstacks
[19:03:37] [main/INFO] [FML]: Itemstack injection complete
[19:03:38] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 5 mods
[19:03:38] [main/WARN] [net.minecraft.client.settings.GameSettings]: Skipping bad option: lastServer:
[19:03:38] [main/INFO] [com.mojang.text2speech.NarratorWindows]: Narrator library for x64 successfully loaded
[19:03:39] [Realms Notification Availability checker #1/INFO] [com.mojang.realmsclient.client.RealmsClient]: Could not authorize you against Realms server: Invalid session id
[19:04:11] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Starting integrated minecraft server version 1.12.2
[19:04:11] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Generating keypair
[19:04:11] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance
[19:04:11] [Server thread/INFO] [FML]: Applying holder lookups
[19:04:11] [Server thread/INFO] [FML]: Holder lookups applied
[19:04:11] [Server thread/INFO] [FML]: Loading dimension 0 (Mod testing) (net.minecraft.server.integrated.IntegratedServer@69588747)
[19:04:12] [Server thread/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 488 advancements
[19:04:12] [Server thread/INFO] [FML]: Loading dimension 1 (Mod testing) (net.minecraft.server.integrated.IntegratedServer@69588747)
[19:04:12] [Server thread/INFO] [FML]: Loading dimension -1 (Mod testing) (net.minecraft.server.integrated.IntegratedServer@69588747)
[19:04:12] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing start region for level 0
[19:04:13] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 36%
[19:04:14] [Server thread/INFO] [FML]: Unloading dimension -1
[19:04:14] [Server thread/INFO] [FML]: Unloading dimension 1
[19:04:14] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Changing view distance to 12, from 10
[19:04:15] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2
[19:04:15] [Netty Server IO #1/INFO] [FML]: Client protocol version 2
[19:04:15] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 5 mods : minecraft@1.12.2,FML@8.0.99.99,forge@14.23.4.2705,spellcheckmod@1.0,mcp@9.42
[19:04:15] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established
[19:04:15] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
[19:04:15] [Server thread/INFO] [net.minecraft.server.management.PlayerList]: Player479[local:E:4827beb0] logged in with entity id 280 at (57.61344402290189, 71.75105953079364, 186.35108377209144)
[19:04:15] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Player479 joined the game
[19:04:16] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Saving and pausing game...
[19:04:16] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'Mod testing'/overworld
[19:04:16] [pool-2-thread-1/WARN] [com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@25aead42[id=984cf274-9eed-399c-97dc-353ad10f84a8,name=Player479,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:3716) [guava-21.0.jar:?]
    at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2424) [guava-21.0.jar:?]
    at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2298) [guava-21.0.jar:?]
    at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2211) [guava-21.0.jar:?]
    at com.google.common.cache.LocalCache.get(LocalCache.java:4154) [guava-21.0.jar:?]
    at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:4158) [guava-21.0.jar:?]
    at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:5147) [guava-21.0.jar:?]
    at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:5153) [guava-21.0.jar:?]
    at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:170) [YggdrasilMinecraftSessionService.class:?]
    at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3178) [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_121]
    at java.util.concurrent.FutureTask.run(Unknown Source) [?:1.8.0_121]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [?:1.8.0_121]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [?:1.8.0_121]
    at java.lang.Thread.run(Unknown Source) [?:1.8.0_121]
[19:04:16] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Saving and pausing game...
[19:04:16] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'Mod testing'/overworld
[19:04:20] [main/INFO] [STDOUT]: [com.consumerjunk.spellcheck.gui.GuiEventHandler:onGuiOpenEvent:16]: com.consumerjunk.spellcheck.gui.GuiSpellCheckChat@a16ee09
[19:04:21] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Saving and pausing game...
[19:04:21] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'Mod testing'/overworld
[19:04:21] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Stopping server
[19:04:21] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving players
[19:04:21] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving worlds
[19:04:21] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'Mod testing'/overworld
[19:04:21] [Server thread/INFO] [FML]: Unloading dimension 0
[19:04:21] [Server thread/INFO] [FML]: Applying holder lookups
[19:04:21] [Server thread/INFO] [FML]: Holder lookups applied
[19:04:22] [main/FATAL] [net.minecraft.client.Minecraft]: Reported exception thrown!
net.minecraft.util.ReportedException: Updating screen events
    at net.minecraft.client.Minecraft.runTick(Minecraft.java:1897) ~[Minecraft.class:?]
    at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1186) ~[Minecraft.class:?]
    at net.minecraft.client.Minecraft.run(Minecraft.java:441) [Minecraft.class:?]
    at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_121]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_121]
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_121]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_121]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_121]
    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
    at GradleStart.main(GradleStart.java:25) [start/:?]
Caused by: java.lang.NullPointerException
    at net.minecraft.client.gui.GuiScreen.handleKeyboardInput(GuiScreen.java:642) ~[GuiScreen.class:?]
    at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:587) ~[GuiScreen.class:?]
    at net.minecraft.client.Minecraft.runTick(Minecraft.java:1884) ~[Minecraft.class:?]
    ... 15 more
[19:04:22] [main/INFO] [STDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:629]: ---- Minecraft Crash Report ----
// I bet Cylons wouldn't have this problem.

Time: 8/18/18 7:04 PM
Description: Updating screen events

java.lang.NullPointerException: Updating screen events
    at net.minecraft.client.gui.GuiScreen.handleKeyboardInput(GuiScreen.java:642)
    at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:587)
    at net.minecraft.client.Minecraft.runTick(Minecraft.java:1884)
    at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1186)
    at net.minecraft.client.Minecraft.run(Minecraft.java:441)
    at net.minecraft.client.main.Main.main(Main.java:118)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)
    at GradleStart.main(GradleStart.java:25)


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

-- Head --
Thread: Client thread
Stacktrace:
    at net.minecraft.client.gui.GuiScreen.handleKeyboardInput(GuiScreen.java:642)
    at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:587)

-- Affected screen --
Details:
    Screen name: com.consumerjunk.spellcheck.gui.GuiSpellCheckChat

-- Affected level --
Details:
    Level name: MpServer
    All players: 1 total; [EntityPlayerSP['Player479'/280, l='MpServer', x=57.61, y=71.75, z=186.35]]
    Chunk stats: MultiplayerChunkCache: 621, 621
    Level seed: 0
    Level generator: ID 00 - default, ver 1. Features enabled: false
    Level generator options: 
    Level spawn location: World: (72,64,98), Chunk: (at 8,4,2 in 4,6; contains blocks 64,0,96 to 79,255,111), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)
    Level time: 32494 game time, 32494 day time
    Level dimension: 0
    Level storage version: 0x00000 - Unknown?
    Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
    Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
    Forced entities: 110 total; [EntityBat['Bat'/256, l='MpServer', x=135.75, y=27.10, z=187.25], EntityZombie['Zombie'/262, l='MpServer', x=134.55, y=33.00, z=264.78], EntityPlayerSP['Player479'/280, l='MpServer', x=57.61, y=71.75, z=186.35], EntitySkeleton['Skeleton'/43, l='MpServer', x=-20.34, y=57.00, z=115.50], EntityCreeper['Creeper'/62, l='MpServer', x=-11.18, y=58.00, z=117.52], EntityBat['Bat'/63, l='MpServer', x=-5.25, y=48.10, z=123.25], EntityBat['Bat'/64, l='MpServer', x=-4.75, y=64.10, z=115.75], EntitySquid['Squid'/65, l='MpServer', x=-0.08, y=56.35, z=131.39], EntitySquid['Squid'/66, l='MpServer', x=-0.77, y=50.92, z=133.04], EntitySquid['Squid'/67, l='MpServer', x=2.43, y=54.76, z=144.06], EntitySquid['Squid'/68, l='MpServer', x=3.39, y=54.84, z=133.45], EntitySquid['Squid'/69, l='MpServer', x=-5.32, y=60.09, z=148.92], EntitySquid['Squid'/70, l='MpServer', x=-0.19, y=62.58, z=152.47], EntitySquid['Squid'/71, l='MpServer', x=-4.62, y=50.28, z=147.90], EntitySquid['Squid'/72, l='MpServer', x=-1.92, y=56.39, z=154.16], EntitySquid['Squid'/76, l='MpServer', x=-1.69, y=54.33, z=181.00], EntityCreeper['Creeper'/87, l='MpServer', x=14.81, y=26.00, z=111.49], EntitySquid['Squid'/89, l='MpServer', x=-0.18, y=52.28, z=160.73], EntitySquid['Squid'/90, l='MpServer', x=10.35, y=56.31, z=231.52], EntityEnderman['Enderman'/112, l='MpServer', x=22.50, y=47.00, z=116.42], EntityCow['Cow'/113, l='MpServer', x=18.74, y=67.00, z=122.27], EntityCow['Cow'/114, l='MpServer', x=18.43, y=67.00, z=119.55], EntitySquid['Squid'/115, l='MpServer', x=25.09, y=43.38, z=181.29], EntitySquid['Squid'/116, l='MpServer', x=17.14, y=36.67, z=201.86], EntityCow['Cow'/128, l='MpServer', x=42.94, y=61.00, z=118.53], EntityCow['Cow'/129, l='MpServer', x=38.82, y=66.00, z=125.52], EntityWolf['Wolf'/130, l='MpServer', x=36.43, y=67.00, z=124.39], EntityWolf['Wolf'/131, l='MpServer', x=34.98, y=67.00, z=126.30], EntityZombie['Zombie'/132, l='MpServer', x=41.74, y=50.00, z=141.42], EntityZombie['Zombie'/133, l='MpServer', x=35.51, y=51.00, z=137.17], EntityZombie['Zombie'/134, l='MpServer', x=33.38, y=52.00, z=133.49], EntityWolf['Wolf'/135, l='MpServer', x=36.48, y=67.00, z=128.56], EntitySquid['Squid'/136, l='MpServer', x=31.79, y=60.03, z=177.48], EntitySquid['Squid'/137, l='MpServer', x=35.55, y=45.28, z=184.46], EntitySquid['Squid'/138, l='MpServer', x=33.10, y=56.33, z=175.17], EntitySquid['Squid'/139, l='MpServer', x=32.28, y=54.13, z=211.47], EntitySquid['Squid'/140, l='MpServer', x=44.74, y=60.67, z=234.92], EntitySquid['Squid'/141, l='MpServer', x=50.16, y=59.69, z=231.94], EntitySquid['Squid'/143, l='MpServer', x=37.20, y=50.23, z=250.95], EntitySquid['Squid'/144, l='MpServer', x=40.72, y=58.63, z=245.93], EntitySquid['Squid'/162, l='MpServer', x=49.46, y=62.26, z=219.53], EntitySquid['Squid'/163, l='MpServer', x=48.97, y=60.90, z=230.77], EntityWolf['Wolf'/167, l='MpServer', x=78.46, y=64.00, z=119.20], EntitySkeleton['Skeleton'/168, l='MpServer', x=66.69, y=44.00, z=135.17], EntityZombie['Zombie'/169, l='MpServer', x=73.00, y=44.00, z=137.37], EntitySkeleton['Skeleton'/170, l='MpServer', x=64.80, y=44.00, z=133.54], EntityWolf['Wolf'/171, l='MpServer', x=65.49, y=68.00, z=154.09], EntityWolf['Wolf'/172, l='MpServer', x=74.27, y=67.00, z=170.45], EntityWolf['Wolf'/173, l='MpServer', x=79.24, y=67.00, z=161.84], EntityWolf['Wolf'/174, l='MpServer', x=76.47, y=67.00, z=161.92], EntitySquid['Squid'/175, l='MpServer', x=77.53, y=60.64, z=220.08], EntityWolf['Wolf'/179, l='MpServer', x=90.45, y=64.00, z=106.51], EntityZombie['Zombie'/180, l='MpServer', x=86.50, y=36.00, z=145.50], EntityCreeper['Creeper'/181, l='MpServer', x=95.50, y=36.00, z=178.50], EntitySquid['Squid'/182, l='MpServer', x=87.67, y=46.00, z=236.84], EntitySquid['Squid'/183, l='MpServer', x=82.27, y=57.92, z=232.12], EntitySquid['Squid'/184, l='MpServer', x=95.67, y=50.91, z=243.64], EntityWolf['Wolf'/189, l='MpServer', x=98.77, y=66.00, z=130.98], EntityBat['Bat'/190, l='MpServer', x=105.83, y=31.03, z=133.55], EntityZombie['Zombie'/191, l='MpServer', x=106.50, y=30.77, z=142.43], EntityCreeper['Creeper'/192, l='MpServer', x=111.62, y=31.00, z=144.44], EntitySkeleton['Skeleton'/193, l='MpServer', x=99.50, y=36.00, z=174.50], EntityCreeper['Creeper'/194, l='MpServer', x=102.23, y=14.00, z=182.84], EntitySpider['Spider'/195, l='MpServer', x=105.23, y=14.17, z=183.58], EntitySkeleton['Skeleton'/196, l='MpServer', x=105.23, y=14.02, z=183.58], EntitySkeleton['Skeleton'/197, l='MpServer', x=107.40, y=14.00, z=183.70], EntitySkeleton['Skeleton'/198, l='MpServer', x=110.50, y=21.00, z=184.50], EntitySquid['Squid'/199, l='MpServer', x=111.01, y=59.09, z=180.70], EntitySquid['Squid'/200, l='MpServer', x=109.15, y=57.12, z=183.30], EntitySquid['Squid'/201, l='MpServer', x=107.77, y=56.08, z=181.42], EntitySquid['Squid'/202, l='MpServer', x=109.34, y=59.24, z=188.88], EntitySquid['Squid'/203, l='MpServer', x=101.83, y=60.58, z=192.30], EntitySquid['Squid'/204, l='MpServer', x=110.53, y=56.55, z=209.63], EntitySquid['Squid'/205, l='MpServer', x=99.86, y=57.05, z=207.27], EntitySquid['Squid'/206, l='MpServer', x=112.07, y=52.60, z=225.58], EntityBat['Bat'/207, l='MpServer', x=118.77, y=27.68, z=243.28], EntitySquid['Squid'/208, l='MpServer', x=112.73, y=58.62, z=237.36], EntitySkeleton['Skeleton'/213, l='MpServer', x=125.54, y=28.00, z=137.43], EntitySpider['Spider'/214, l='MpServer', x=126.74, y=28.42, z=138.10], EntityZombie['Zombie'/215, l='MpServer', x=127.67, y=26.00, z=131.59], EntitySkeleton['Skeleton'/216, l='MpServer', x=119.50, y=31.00, z=155.29], EntitySkeleton['Skeleton'/217, l='MpServer', x=121.32, y=30.00, z=144.64], EntitySkeleton['Skeleton'/218, l='MpServer', x=120.50, y=30.00, z=144.22], EntitySkeleton['Skeleton'/219, l='MpServer', x=121.50, y=13.00, z=187.50], EntitySkeleton['Skeleton'/220, l='MpServer', x=131.48, y=13.00, z=178.48], EntityBat['Bat'/221, l='MpServer', x=127.41, y=18.10, z=188.38], EntitySquid['Squid'/222, l='MpServer', x=116.12, y=49.69, z=194.46], EntityCreeper['Creeper'/223, l='MpServer', x=123.76, y=29.00, z=197.34], EntitySquid['Squid'/225, l='MpServer', x=110.35, y=61.28, z=220.85], EntitySquid['Squid'/226, l='MpServer', x=111.68, y=54.78, z=225.32], EntitySquid['Squid'/227, l='MpServer', x=113.63, y=59.10, z=213.66], EntityBat['Bat'/228, l='MpServer', x=117.75, y=27.10, z=238.75], EntityCreeper['Creeper'/229, l='MpServer', x=117.19, y=26.00, z=236.48], EntityCreeper['Creeper'/230, l='MpServer', x=113.51, y=27.00, z=239.79], EntityCreeper['Creeper'/231, l='MpServer', x=115.70, y=34.00, z=231.50], EntitySkeleton['Skeleton'/232, l='MpServer', x=115.42, y=34.00, z=229.88], EntitySquid['Squid'/235, l='MpServer', x=116.45, y=51.22, z=246.54], EntitySkeleton['Skeleton'/241, l='MpServer', x=131.45, y=24.00, z=122.78], EntityCreeper['Creeper'/242, l='MpServer', x=131.52, y=27.00, z=117.57], EntityCreeper['Creeper'/243, l='MpServer', x=135.74, y=22.00, z=127.48], EntitySkeleton['Skeleton'/244, l='MpServer', x=129.47, y=29.00, z=116.33], EntitySkeleton['Skeleton'/245, l='MpServer', x=133.23, y=26.00, z=120.52], EntitySkeleton['Skeleton'/246, l='MpServer', x=133.73, y=23.00, z=125.50], EntityCreeper['Creeper'/247, l='MpServer', x=128.10, y=27.00, z=135.34], EntityCreeper['Creeper'/248, l='MpServer', x=128.59, y=31.00, z=145.80], EntityBat['Bat'/250, l='MpServer', x=135.39, y=40.29, z=144.99], EntitySkeleton['Skeleton'/251, l='MpServer', x=136.79, y=13.00, z=173.50], EntitySkeleton['Skeleton'/252, l='MpServer', x=136.50, y=13.00, z=174.63], EntitySkeleton['Skeleton'/254, l='MpServer', x=130.49, y=14.00, z=177.73], EntityEnderman['Enderman'/255, l='MpServer', x=132.48, y=14.00, z=183.39]]
    Retry entities: 0 total; []
    Server brand: fml,forge
    Server type: Integrated singleplayer server
Stacktrace:
    at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:461)
    at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2886)
    at net.minecraft.client.Minecraft.run(Minecraft.java:462)
    at net.minecraft.client.main.Main.main(Main.java:118)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)
    at GradleStart.main(GradleStart.java:25)

-- System Details --
Details:
    Minecraft Version: 1.12.2
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 1.8.0_121, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 636446464 bytes (606 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
    JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
    IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94
    FML: MCP 9.42 Powered by Forge 14.23.4.2705 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

    | State     | ID            | Version      | Source                           | Signature |
    |:--------- |:------------- |:------------ |:-------------------------------- |:--------- |
    | UCHIJAAAA | minecraft     | 1.12.2       | minecraft.jar                    | None      |
    | UCHIJAAAA | mcp           | 9.42         | minecraft.jar                    | None      |
    | UCHIJAAAA | FML           | 8.0.99.99    | forgeSrc-1.12.2-14.23.4.2705.jar | None      |
    | UCHIJAAAA | forge         | 14.23.4.2705 | forgeSrc-1.12.2-14.23.4.2705.jar | None      |
    | UCHIJAAAA | spellcheckmod | 1.0          | bin                              | None      |

    Loaded coremods (and transformers): 
    GL info: ' Vendor: 'Intel' Version: '4.0.0 - Build 10.18.10.4358' Renderer: 'Intel(R) HD Graphics 4000'
    Launched Version: 1.12.2
    LWJGL: 2.9.4
    OpenGL: Intel(R) HD Graphics 4000 GL version 4.0.0 - Build 10.18.10.4358, Intel
    GL Caps: Using GL 1.3 multitexturing.
Using GL 1.3 texture combiners.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Shaders are available because OpenGL 2.1 is supported.
VBOs are available because OpenGL 1.5 is supported.

    Using VBOs: Yes
    Is Modded: Definitely; Client brand changed to 'fml,forge'
    Type: Client (map_client.txt)
    Resource Packs: 
    Current Language: ~~ERROR~~ NullPointerException: null
    Profiler Position: N/A (disabled)
    CPU: 8x Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz
[19:04:22] [main/INFO] [STDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:629]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\CJ\Desktop\Spellcheck mod dev\run\.\crash-reports\crash-2018-08-18_19.04.22-client.txt
AL lib: (EE) alc_cleanup: 1 device not closed
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release

 

 

Edited by ConsumerJunk
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



×
×
  • Create New...

Important Information

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