Remove duplicate Quartz class (cc @PEMapModder)

how did nobody ever notice this...
This commit is contained in:
Dylan K. Taylor 2017-07-13 16:48:25 +01:00
parent 4d874e7e78
commit c2a7c2c6cd
2 changed files with 1 additions and 34 deletions

View File

@ -224,8 +224,7 @@ class Item implements ItemIds, \JsonSerializable{
self::$list[self::MOB_HEAD] = MobHead::class; self::$list[self::MOB_HEAD] = MobHead::class;
self::$list[self::PUMPKIN_PIE] = PumpkinPie::class; self::$list[self::PUMPKIN_PIE] = PumpkinPie::class;
self::$list[self::NETHER_BRICK] = NetherBrick::class; self::$list[self::NETHER_BRICK] = NetherBrick::class;
self::$list[self::QUARTZ] = Quartz::class; self::$list[self::NETHER_QUARTZ] = NetherQuartz::class;
self::$list[self::QUARTZ] = NetherQuartz::class;
self::$list[self::COOKED_RABBIT] = CookedRabbit::class; self::$list[self::COOKED_RABBIT] = CookedRabbit::class;
// self::$list[self::CAMERA] = Camera::class; // self::$list[self::CAMERA] = Camera::class;
self::$list[self::BEETROOT] = Beetroot::class; self::$list[self::BEETROOT] = Beetroot::class;

View File

@ -1,32 +0,0 @@
<?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\item;
class Quartz extends Item{
public function __construct($meta = 0, $count = 1){
parent::__construct(self::QUARTZ, $meta, $count, "Quartz");
}
}