mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 09:47:38 +00:00
Improved /info tool to handle more block data.
This commit is contained in:
parent
14bcf2fa06
commit
6b73ece378
@ -45,6 +45,13 @@ public class QueryTool implements SuperPickaxeMode {
|
|||||||
if (block instanceof MobSpawnerBlock) {
|
if (block instanceof MobSpawnerBlock) {
|
||||||
player.printRaw("\u00A7e" + "Mob Type: "
|
player.printRaw("\u00A7e" + "Mob Type: "
|
||||||
+ ((MobSpawnerBlock)block).getMobType());
|
+ ((MobSpawnerBlock)block).getMobType());
|
||||||
|
} else if (block instanceof NoteBlock) {
|
||||||
|
player.printRaw("\u00A7e" + "Note block: "
|
||||||
|
+ ((NoteBlock)block).getNote());
|
||||||
|
} else if (block.getType() == BlockID.CLOTH) {
|
||||||
|
// Should never be null
|
||||||
|
player.printRaw("\u00A7e" + "Color: "
|
||||||
|
+ ClothColor.fromID(block.getData()).getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user