Add nicer error when using player commands as console.

Also fix slash counts for Bukkit.
This commit is contained in:
wizjany
2019-04-29 17:39:30 -04:00
parent 8baf221c95
commit 3c04a83852
2 changed files with 6 additions and 2 deletions

View File

@ -469,6 +469,10 @@ public final class PlatformCommandManager {
store.injectValue(Key.of(Actor.class), ValueProvider.constant(actor));
if (actor instanceof Player) {
store.injectValue(Key.of(Player.class), ValueProvider.constant((Player) actor));
} else {
store.injectValue(Key.of(Player.class), context -> {
throw new CommandException(TextComponent.of("This command must be used with a player."), ImmutableList.of());
});
}
store.injectValue(Key.of(Arguments.class), ValueProvider.constant(event::getArguments));
store.injectValue(Key.of(LocalSession.class),