From 40ac2b7e23f9512c2a52b7be7e3d40798f0ac080 Mon Sep 17 00:00:00 2001 From: Prototik Date: Mon, 19 Oct 2015 11:23:10 +0700 Subject: [PATCH] Fix #209 --- patches/net/minecraft/world/World.java.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/net/minecraft/world/World.java.patch b/patches/net/minecraft/world/World.java.patch index a00f029..91a98ba 100644 --- a/patches/net/minecraft/world/World.java.patch +++ b/patches/net/minecraft/world/World.java.patch @@ -472,7 +472,7 @@ this.calculateInitialSkylight(); this.calculateInitialWeather(); -+ this.getServer().addWorld(this.world); // CraftBukkit ++ if (getServer() != null) getServer().addWorld(world); // CraftBukkit } + // Cauldron end