From 7d28a500f44a48262d59a7ce31cc7fd5ea9b5748 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sat, 1 Oct 2016 23:03:45 +0200 Subject: [PATCH] fix the fix --- .../de/ellpeck/actuallyadditions/mod/gen/WorldGenLushCaves.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/gen/WorldGenLushCaves.java b/src/main/java/de/ellpeck/actuallyadditions/mod/gen/WorldGenLushCaves.java index cb6cc27dc..01c87bdb7 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/gen/WorldGenLushCaves.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/gen/WorldGenLushCaves.java @@ -113,7 +113,7 @@ public class WorldGenLushCaves extends WorldGenerator{ //If this isn't checked, the game crashes because it tries to destroy a chest that doesn't have any loot yet :v TileEntity tile = world.getTileEntity(pos); if(tile instanceof ILootContainer){ - return false; + return true; } } return true;