mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-05 01:29:55 +00:00
Fix lava buckets on furnaces
This commit is contained in:
parent
5e45567c1d
commit
67b0b97005
@ -107,7 +107,10 @@ class Item{
|
|||||||
if(!isset(FuelData::$duration[$this->id])){
|
if(!isset(FuelData::$duration[$this->id])){
|
||||||
return false;
|
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(){
|
final public function getSmeltItem(){
|
||||||
|
@ -45,7 +45,7 @@ class FuelData{
|
|||||||
WORKBENCH => 15,
|
WORKBENCH => 15,
|
||||||
BOOKSHELF => 15,
|
BOOKSHELF => 15,
|
||||||
CHEST => 15,
|
CHEST => 15,
|
||||||
LAVA_BUCKET => 1000,
|
BUCKET => 1000,
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user