Skip to content

Commit

Permalink
Version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
misterplus committed Mar 7, 2020
1 parent dae52d0 commit aae5cf4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'org.spongepowered.mixin'

version = "1.3.0"
version = "1.3.1"
group = "com.misterplus.plustweaks"
archivesBaseName = "plustweaks"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/misterplus/plustweaks/PlusTweaks.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
public class PlusTweaks {
public static final String MOD_ID = "plustweaks";
public static final String MOD_NAME = "PlusTweaks";
public static final String VERSION = "1.3.0";
public static final String VERSION = "1.3.1";

public static Logger logger = LogManager.getLogger(PlusTweaks.MOD_NAME);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ private boolean redirect_checkForMixing(World world, BlockPos pos, IBlockState s
cancellable = true
)
private void injectCheckForMixing(World worldIn, BlockPos pos, IBlockState state, CallbackInfoReturnable<Boolean> cir) {
boolean flagPlus = false;
for (LiquidInteraction interaction : ctInteractions) {
boolean flagPlus = false;
for (EnumFacing enumfacing : EnumFacing.values())
{
if (!worldIn.getBlockState(pos.offset(enumfacing)).getMaterial().isLiquid())
Expand Down

0 comments on commit aae5cf4

Please sign in to comment.