Blue Ice: No longer emits light & it's now dropped when mined with a tool with silk touch enchantment (#6438)

This commit is contained in:
Vega Nicholas S. 2024-09-01 11:33:11 +07:00 committed by GitHub
parent 281afb6838
commit 9381fc4172
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,10 +27,6 @@ use pocketmine\item\Item;
class BlueIce extends Opaque{
public function getLightLevel() : int{
return 1;
}
public function getFrictionFactor() : float{
return 0.99;
}
@ -38,4 +34,8 @@ class BlueIce extends Opaque{
public function getDropsForCompatibleTool(Item $item) : array{
return [];
}
public function isAffectedBySilkTouch() : bool{
return true;
}
}