Skip to content

Commit

Permalink
fix empty cauldrons resetting the world
Browse files Browse the repository at this point in the history
  • Loading branch information
LemmaEOF committed Mar 30, 2019
1 parent cc08797 commit 249a6d0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion project.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
projectName = "cotton";
group = "io.github.cottonmc";
version = "0.1.0+19w13b";
version = "0.1.1+19w13b";
snapshot = true;

minecraft = "19w13b";
Expand Down
1 change: 0 additions & 1 deletion src/main/java/io/github/cottonmc/cotton/Cotton.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
import net.fabricmc.loader.api.FabricLoader;
import net.minecraft.block.Blocks;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.fluid.Fluids;
import net.minecraft.item.*;
import net.minecraft.sound.SoundCategory;
import net.minecraft.sound.SoundEvents;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public abstract class MixinCauldronBehavior extends Block implements FluidDraina
@Shadow
@Final
public static IntegerProperty LEVEL;
private static final FluidProperty FLUID = FluidProperty.VANILLA_FLUIDS;
private static final FluidProperty FLUID = FluidProperty.ANY_FLUID;

MixinCauldronBehavior(Settings settings) {
super(settings);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "cotton",
"name": "Cotton",
"version": "0.1.0",
"version": "0.1.1",
"side": "universal",
"initializers": [
"io.github.cottonmc.cotton.Cotton"
Expand Down

0 comments on commit 249a6d0

Please sign in to comment.