Skip to content

Commit

Permalink
Blue Ice: No longer emits light & it's now dropped when mined with a …
Browse files Browse the repository at this point in the history
…tool with silk touch enchantment (#6438)
  • Loading branch information
nicholass003 authored Sep 1, 2024
1 parent 281afb6 commit 9381fc4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/block/BlueIce.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@

class BlueIce extends Opaque{

public function getLightLevel() : int{
return 1;
}

public function getFrictionFactor() : float{
return 0.99;
}

public function getDropsForCompatibleTool(Item $item) : array{
return [];
}

public function isAffectedBySilkTouch() : bool{
return true;
}
}

0 comments on commit 9381fc4

Please sign in to comment.