mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-07 12:18:46 +00:00
PocketMine-MP Alpha_1.2 release
This commit is contained in:
parent
f4ce715efc
commit
69de47da92
@ -43,7 +43,7 @@ ini_set("memory_limit", "256M"); //Default
|
|||||||
define("LOG", true);
|
define("LOG", true);
|
||||||
define("MAGIC", "\x00\xff\xff\x00\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfd\x12\x34\x56\x78");
|
define("MAGIC", "\x00\xff\xff\x00\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfd\x12\x34\x56\x78");
|
||||||
define("TEST_MD5", "ffe889db5932db1e3371d48773590e59");
|
define("TEST_MD5", "ffe889db5932db1e3371d48773590e59");
|
||||||
define("MAJOR_VERSION", "Alpha_1.2dev");
|
define("MAJOR_VERSION", "Alpha_1.2");
|
||||||
define("CURRENT_STRUCTURE", 5);
|
define("CURRENT_STRUCTURE", 5);
|
||||||
define("CURRENT_PROTOCOL", 9);
|
define("CURRENT_PROTOCOL", 9);
|
||||||
define("CURRENT_MINECRAFT_VERSION", "v0.6.1 alpha");
|
define("CURRENT_MINECRAFT_VERSION", "v0.6.1 alpha");
|
||||||
|
@ -25,16 +25,33 @@ the Free Software Foundation, either version 3 of the License, or
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/***REM_START***/
|
|
||||||
require_once("Furnace.php");
|
|
||||||
/***REM_END***/
|
|
||||||
|
|
||||||
class BurningFurnaceBlock extends FurnaceBlock{
|
class BurningFurnaceBlock extends SolidBlock{
|
||||||
public function __construct($meta = 0){
|
public function __construct($meta = 0){
|
||||||
parent::__construct($meta);
|
parent::__construct(BURNING_FURNACE, $meta, "Burning Furnace");
|
||||||
$this->id = BURNING_FURNACE;
|
|
||||||
$this->name = "Burning Furnace";
|
|
||||||
$this->isActivable = true;
|
$this->isActivable = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function place(BlockAPI $level, Item $item, Player $player, Block $block, Block $target, $face, $fx, $fy, $fz){
|
||||||
|
if($block->inWorld === true){
|
||||||
|
$faces = array(
|
||||||
|
0 => 4,
|
||||||
|
1 => 2,
|
||||||
|
2 => 5,
|
||||||
|
3 => 3,
|
||||||
|
);
|
||||||
|
$level->setBlock($block, $this->id, $faces[$player->entity->getDirection()]);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
public function getDrops(Item $item, Player $player){
|
||||||
|
if($item->isPickaxe() >= 1){
|
||||||
|
return array(
|
||||||
|
array(FURNACE, 0, 1),
|
||||||
|
);
|
||||||
|
}else{
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
@ -25,33 +25,12 @@ the Free Software Foundation, either version 3 of the License, or
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
class FurnaceBlock extends BurningFurnaceBlock{
|
||||||
class FurnaceBlock extends SolidBlock{
|
|
||||||
public function __construct($meta = 0){
|
public function __construct($meta = 0){
|
||||||
parent::__construct(FURNACE, $meta, "Furnace");
|
parent::__construct($meta);
|
||||||
|
$this->id = FURNACE;
|
||||||
|
$this->name = "Furnace";
|
||||||
$this->isActivable = true;
|
$this->isActivable = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function place(BlockAPI $level, Item $item, Player $player, Block $block, Block $target, $face, $fx, $fy, $fz){
|
|
||||||
if($block->inWorld === true){
|
|
||||||
$faces = array(
|
|
||||||
0 => 4,
|
|
||||||
1 => 2,
|
|
||||||
2 => 5,
|
|
||||||
3 => 3,
|
|
||||||
);
|
|
||||||
$level->setBlock($block, $this->id, $faces[$player->entity->getDirection()]);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
public function getDrops(Item $item, Player $player){
|
|
||||||
if($item->isPickaxe() >= 1){
|
|
||||||
return array(
|
|
||||||
array(FURNACE, 0, 1),
|
|
||||||
);
|
|
||||||
}else{
|
|
||||||
return array();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user