Remove testBlockState command
This commit is contained in:
parent
cbd27508ef
commit
44c614d6f0
1 changed files with 0 additions and 34 deletions
|
@ -62,7 +62,6 @@ public class CommandProcessor {
|
||||||
commands.add(new announcementCommand());
|
commands.add(new announcementCommand());
|
||||||
commands.add(new songItemCommand());
|
commands.add(new songItemCommand());
|
||||||
commands.add(new testSongCommand());
|
commands.add(new testSongCommand());
|
||||||
commands.add(new testBlockStateCommand());
|
|
||||||
|
|
||||||
for (Command command : commands) {
|
for (Command command : commands) {
|
||||||
commandMap.put(command.getName().toLowerCase(Locale.ROOT), command);
|
commandMap.put(command.getName().toLowerCase(Locale.ROOT), command);
|
||||||
|
@ -1192,39 +1191,6 @@ public class CommandProcessor {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static class testBlockStateCommand extends Command {
|
|
||||||
public String getName() {
|
|
||||||
return "testBlockState";
|
|
||||||
}
|
|
||||||
public String[] getSyntax() {
|
|
||||||
return new String[0];
|
|
||||||
}
|
|
||||||
public String getDescription() {
|
|
||||||
return "for dev purposes";
|
|
||||||
}
|
|
||||||
public boolean processCommand(String args) {
|
|
||||||
if (args.length() == 0) {
|
|
||||||
if (MC.crosshairTarget instanceof BlockHitResult) {
|
|
||||||
BlockHitResult hitResult = (BlockHitResult) MC.crosshairTarget;
|
|
||||||
BlockState bs = MC.world.getBlockState(hitResult.getBlockPos());
|
|
||||||
ItemStack stack = new ItemStack(bs.getBlock());
|
|
||||||
SongPlayer.addChatMessage(stack.toString());
|
|
||||||
for (Map.Entry<Property<?>, Comparable<?>> entry : bs.getEntries().entrySet()) {
|
|
||||||
Property<?> property = entry.getKey();
|
|
||||||
Comparable<?> value = entry.getValue();
|
|
||||||
// SongPlayer.addChatMessage(net.minecraft.util.Util.getValueAsString(property, comparable));
|
|
||||||
System.out.println(property.getClass());
|
|
||||||
System.out.println(value.getClass());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static CompletableFuture<Suggestions> handleSuggestions(String text, SuggestionsBuilder suggestionsBuilder) {
|
public static CompletableFuture<Suggestions> handleSuggestions(String text, SuggestionsBuilder suggestionsBuilder) {
|
||||||
if (!text.contains(" ")) {
|
if (!text.contains(" ")) {
|
||||||
List<String> names = commandCompletions
|
List<String> names = commandCompletions
|
||||||
|
|
Loading…
Reference in a new issue