Added Particles to boiling Cauldrons

This commit is contained in:
Sn0wStorm
2020-11-06 13:59:36 +01:00
parent c8a7a56ab9
commit 3d9309e2d9
17 changed files with 216 additions and 10 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ public class LegacyUtil {
return type.name().endsWith("SIGN") || (!P.use1_13 && type == SIGN_POST);
}
public static boolean isFireForCauldron(Block block) {
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));
}