mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-09 11:31:49 +00:00
Apply a prefix to block type tags
This commit is contained in:
parent
9809909072
commit
0efd928db6
@ -24,9 +24,10 @@ declare(strict_types=1);
|
|||||||
namespace pocketmine\block;
|
namespace pocketmine\block;
|
||||||
|
|
||||||
final class BlockTypeTags{
|
final class BlockTypeTags{
|
||||||
|
private const PREFIX = "pocketmine:";
|
||||||
|
|
||||||
public const DIRT = "dirt";
|
public const DIRT = self::PREFIX . "dirt";
|
||||||
public const MUD = "mud";
|
public const MUD = self::PREFIX . "mud";
|
||||||
public const SAND = "sand";
|
public const SAND = self::PREFIX . "sand";
|
||||||
public const POTTABLE_PLANTS = "pottable";
|
public const POTTABLE_PLANTS = self::PREFIX . "pottable";
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user