Merge branch 'release/3.0' into release/3.1

This commit is contained in:
Dylan K. Taylor
2018-06-23 13:04:05 +01:00
3 changed files with 9 additions and 2 deletions

View File

@ -53,7 +53,11 @@ class EmeraldOre extends Solid{
public function getDropsForCompatibleTool(Item $item) : array{
return [
ItemFactory::get(Item::EMERALD)
ItemFactory::get(Item::EMERALD)
];
}
protected function getXpDropAmount() : int{
return mt_rand(3, 7);
}
}