Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down
5 changes: 3 additions & 2 deletions update.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down