Revert "Possible Solution to Issue #119"

This reverts commit 365b7bec7dc5c005da711d20004bf8d8c2d54d08.
This commit is contained in:
Shoghi Cervantes Pueyo 2013-03-06 14:37:45 +01:00
parent 804636b99f
commit b1003500c6
2 changed files with 0 additions and 33 deletions

View File

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

View File

@ -1,32 +0,0 @@
<?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);
}
}