diff --git a/gradle.properties b/gradle.properties index 08b5a9bf..38c4fc6d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false -modVersion=0.11.1 +modVersion=0.11.2 modGroup=cjminecraft.doubleslabs modFileName=DoubleSlabs-1.12 modId=doubleslabs diff --git a/src/main/java/cjminecraft/doubleslabs/api/ServerWorldWrapper.java b/src/main/java/cjminecraft/doubleslabs/api/ServerWorldWrapper.java index 18296aad..5aed9a66 100644 --- a/src/main/java/cjminecraft/doubleslabs/api/ServerWorldWrapper.java +++ b/src/main/java/cjminecraft/doubleslabs/api/ServerWorldWrapper.java @@ -84,7 +84,7 @@ private static void patch(ServerWorldWrapper instance) { public ServerWorldWrapper(WorldServer world) { super(world.getMinecraftServer(), world.getSaveHandler(), world.getWorldInfo(), world.provider.getDimension(), world.profiler); this.world = world; - DimensionManager.setWorld(world.getWorldType().getId(), world, world.getMinecraftServer()); + DimensionManager.setWorld(world.provider.getDimension(), world, world.getMinecraftServer()); patch(this); } diff --git a/update.json b/update.json index d87b84ed..bf173778 100644 --- a/update.json +++ b/update.json @@ -37,6 +37,7 @@ "0.10.0": "+Added a blacklist to disable slabs from being placed vertically\n=Improved the slab blacklist\n=Fix the back of vertical slab rotations\n=Improved ambient occlusion", "0.11.0": "+Completely rewritten the entire mod fixing various issues in the process\n+Added vertical slab items which can be crafted from regular slabs\n+Added player specific placement options\n+Added a keybinding to toggle vertical slab placement from regular slabs\n+Added a crafting blacklist to disable the crafting recipe of slabs to vertical slabs\n=Tweaked slab rendering to use the double slab model when both slabs are of the same type\n=Fixed ambient occlusion for slabs (without OptiFine and shaders)\n=Improved dynamic placement mechanism\n=Fixed numerous crashes\n=Improved culling mechanism to work better with transparent and non full models\n+Added support for extended blockstates meaning mods like BlockCraftery finally work\n=Improved container support to work in it's entirety" "0.11.1": "=Fixed some crashes" + "0.11.2": "=forgot one line" }, "1.14.4": { "1.0.0": "Initial port to 1.14", @@ -154,8 +155,8 @@ "3.4.9": "=Fixed an item duplication bug when crafting vertical slabs" }, "promos": { - "1.12.2-latest": "0.11.1", - "1.12.2-recommended": "0.11.1", + "1.12.2-latest": "0.11.2", + "1.12.2-recommended": "0.11.2", "1.14.4-latest": "1.11.3", "1.14.4-recommended": "1.11.3", "1.15.2-latest": "2.11.7",