Possible Solution to Issue #119

This commit is contained in:
Michael Yoo 2013-03-06 18:29:59 +10:30
parent b0722a8ab1
commit 365b7bec7d
2 changed files with 33 additions and 0 deletions

View File

@ -218,4 +218,5 @@ require_once("block/FallableBlock.php");
require_once("block/LiquidBlock.php"); require_once("block/LiquidBlock.php");
require_once("block/StairBlock.php"); require_once("block/StairBlock.php");
require_once("block/DoorBlock.php"); require_once("block/DoorBlock.php");
require_once("block/BurningFurnaceBlock.php");
/***REM_END***/ /***REM_END***/

View File

@ -0,0 +1,32 @@
<?php
/*
-
/ \
/ \
/ PocketMine \
/ MP \
|\ @shoghicp /|
|. \ / .|
| .. \ / .. |
| .. | .. |
| .. | .. |
\ | /
\ | /
\ | /
\ | /
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
*/
class BurningFurnaceBlock extends GenericBlock{
public function __construct($id, $meta = 0, $name = "Unknown"){
parent::__construct($id, $meta, $name);
}
}