Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jsinco committed Jul 1, 2024
1 parent 6d5b0fe commit b2eb73c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: Jsinco
2 changes: 1 addition & 1 deletion src/com/dre/brewery/utility/LegacyUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public static boolean isSign(Material type) {

public static boolean isCauldronHeatsource(Block block) {
Material type = block.getType();
return type != null && (type == Material.FIRE || type == SOUL_FIRE || type == MAGMA_BLOCK || litCampfire(block) || isLava(type));
return type == Material.FIRE || type == SOUL_FIRE || type == MAGMA_BLOCK || litCampfire(block) || isLava(type);
}

// LAVA and STATIONARY_LAVA are merged as of 1.13
Expand Down

0 comments on commit b2eb73c

Please sign in to comment.