-
Bug
-
Resolution: Fixed
-
Minecraft 17w17a, Minecraft 17w17b
-
2.0.579-dev-linux, Oracle Java 8, Arch Linux x64, Kernel 4.10.8-1-ARCH
-
Confirmed
The bug
Creating a new survival world after getting a new recipe in another world with the same name(Old: "New World", New: "New World", saved as "New World-") crashes the game while building terrain (it works fine when reloading it). Doesn't happen with the normal launcher (and resetting the settings with it fixes it for the new launcher too). Doesn't happen if the new world is not called the same or if you didn't get a new recipe before saving the world.
Crash report
---- Minecraft Crash Report ---- // You're mean. Time: 4/26/17 11:01 PM Description: Unexpected error java.lang.NullPointerException: Unexpected error at gf.a(SourceFile:234) at bhb.t(SourceFile:1687) at bhb.ax(SourceFile:964) at bhb.a(SourceFile:404) at net.minecraft.client.main.Main.main(SourceFile:123)
Hopper crash: MCX-3508750
Exit code: 65280
Crash analysis
gf.a(SourceFile:234) corresponds to NetworkManager.closeChannel(ITextComponent message).
public void closeChannel(ITextComponent message) { if (this.channel.isOpen()) { this.channel.close().awaitUninterruptibly(); // <-- this line this.terminationReason = message; } }
pokechu22: Given that it crashes on the second line and not in the if statement, channel is not null, but instead the ChannelFuture produced by calling close is.
I'm not entirely sure how that could happen, given that newPromise is called each time (within netty) and that shouldn't return null.
- is duplicated by
-
MC-116385 Crash when saving and returning to the title screen
- Resolved