mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 16:51:42 +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;
|
||||
|
||||
final class BlockTypeTags{
|
||||
private const PREFIX = "pocketmine:";
|
||||
|
||||
public const DIRT = "dirt";
|
||||
public const MUD = "mud";
|
||||
public const SAND = "sand";
|
||||
public const POTTABLE_PLANTS = "pottable";
|
||||
public const DIRT = self::PREFIX . "dirt";
|
||||
public const MUD = self::PREFIX . "mud";
|
||||
public const SAND = self::PREFIX . "sand";
|
||||
public const POTTABLE_PLANTS = self::PREFIX . "pottable";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user