Packed ice cannot melt ever

This commit is contained in:
MistPhizzle 2014-08-04 08:33:33 -04:00
parent 5464be5fae
commit c9bd71e934

View file

@ -1013,7 +1013,7 @@ public class Methods {
public static boolean isMeltable(Block block) {
if (block.getType() == Material.ICE || block.getType() == Material.SNOW || block.getType() == Material.PACKED_ICE) {
if (block.getType() == Material.ICE || block.getType() == Material.SNOW) {
return true;
}
return false;