mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2024-12-23 00:15:05 +00:00
Packed ice cannot melt ever
This commit is contained in:
parent
5464be5fae
commit
c9bd71e934
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue