mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-10-17 04:06:54 +00:00
Fix lava buckets on furnaces
This commit is contained in:
@@ -107,7 +107,10 @@ class Item{
|
||||
if(!isset(FuelData::$duration[$this->id])){
|
||||
return false;
|
||||
}
|
||||
return FuelData::$duration[$this->id];
|
||||
if($this->id !== BUCKET or $this->meta === 10){
|
||||
return FuelData::$duration[$this->id];
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
final public function getSmeltItem(){
|
||||
|
Reference in New Issue
Block a user