mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-27 13:49:55 +00:00
Added ChemicalHeat block stub
This commit is contained in:
parent
12087c9850
commit
14c156b162
@ -502,6 +502,7 @@ class BlockFactory{
|
||||
$this->register(new ChemistryTable(new BID(Ids::CHEMISTRY_TABLE, Meta::CHEMISTRY_LAB_TABLE), "Lab Table", $chemistryTableBreakInfo));
|
||||
$this->register(new ChemistryTable(new BID(Ids::CHEMISTRY_TABLE, Meta::CHEMISTRY_MATERIAL_REDUCER), "Material Reducer", $chemistryTableBreakInfo));
|
||||
|
||||
$this->register(new ChemicalHeat(new BID(Ids::CHEMICAL_HEAT), "Heat Block", $chemistryTableBreakInfo));
|
||||
//region --- auto-generated TODOs for bedrock-1.11.0 ---
|
||||
//TODO: minecraft:bamboo
|
||||
//TODO: minecraft:bamboo_sapling
|
||||
|
32
src/block/ChemicalHeat.php
Normal file
32
src/block/ChemicalHeat.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
*
|
||||
* ____ _ _ __ __ _ __ __ ____
|
||||
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
||||
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
||||
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
||||
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* @author PocketMine Team
|
||||
* @link http://www.pocketmine.net/
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace pocketmine\block;
|
||||
|
||||
final class ChemicalHeat extends Transparent{
|
||||
|
||||
/*
|
||||
* TODO: this block causes melting of nearby ice and snow within 2 blocks taxicab distance.
|
||||
* Since it doesn't emit any light, the mechanics of this block's behaviour are not currently clear.
|
||||
*/
|
||||
}
|
@ -115,6 +115,7 @@ use function assert;
|
||||
* @method static Cake CAKE()
|
||||
* @method static Carrot CARROTS()
|
||||
* @method static CarvedPumpkin CARVED_PUMPKIN()
|
||||
* @method static ChemicalHeat CHEMICAL_HEAT()
|
||||
* @method static Chest CHEST()
|
||||
* @method static Opaque CHISELED_QUARTZ()
|
||||
* @method static Opaque CHISELED_RED_SANDSTONE()
|
||||
@ -783,6 +784,7 @@ final class VanillaBlocks{
|
||||
self::register("cake", $factory->get(92));
|
||||
self::register("carrots", $factory->get(141));
|
||||
self::register("carved_pumpkin", $factory->get(410));
|
||||
self::register("chemical_heat", $factory->get(192));
|
||||
self::register("chest", $factory->get(54, 2));
|
||||
self::register("chiseled_quartz", $factory->get(155, 1));
|
||||
self::register("chiseled_red_sandstone", $factory->get(179, 1));
|
||||
|
Loading…
x
Reference in New Issue
Block a user