Skip to content
This repository has been archived by the owner on Mar 16, 2020. It is now read-only.

Commit

Permalink
Merge pull request #52 from CortexPE/removeEnderChest // Fix #51
Browse files Browse the repository at this point in the history
Remove EnderChest
  • Loading branch information
CortexPE authored Nov 23, 2017
2 parents 1e5d871 + 2ac2799 commit 00ce28b
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 339 deletions.
3 changes: 1 addition & 2 deletions src/CortexPE/block/BlockManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ class BlockManager {
public static function init(){
self::register(Block::PORTAL, new Portal());
self::register(Block::END_PORTAL, new EndPortal());
self::register(Block::ENDER_CHEST, new EnderChest());
self::register(Block::OBSIDIAN, new Obsidian(), true);
self::register(Block::DRAGON_EGG, new DragonEgg());
self::register(Block::BEACON, new Beacon());
Expand All @@ -67,4 +66,4 @@ public static function register(int $id, Block $block, bool $overwrite = false):

return false;
}
}
}
156 changes: 0 additions & 156 deletions src/CortexPE/block/EnderChest.php

This file was deleted.

99 changes: 0 additions & 99 deletions src/CortexPE/inventory/EnderChestInventory.php

This file was deleted.

79 changes: 0 additions & 79 deletions src/CortexPE/tile/EnderChest.php

This file was deleted.

4 changes: 1 addition & 3 deletions src/CortexPE/tile/Tile.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,10 @@
use pocketmine\tile\Tile as PMTile;

class Tile extends PMTile {
const ENDER_CHEST = "Ender Chest";
const BEACON = "Beacon";

public static function init(){
self::registerTile(EnderChest::class);
self::registerTile(Beacon::class);
// self::registerTile(MobSpawner::class);
}
}
}

0 comments on commit 00ce28b

Please sign in to comment.