Skip to content

Instantly share code, notes, and snippets.

@Limeth
Created December 20, 2014 15:19
Show Gist options
  • Save Limeth/55862e6aff0a47138461 to your computer and use it in GitHub Desktop.
Save Limeth/55862e6aff0a47138461 to your computer and use it in GitHub Desktop.
@Command
public String tell(EntityRef sender, @CommandParam(value = "target", suggester = SUGGESTER_PLAYER) EntityRef target, String message) {
return "sent.";
}
private class PlayerSuggester extends Suggester {
@Override
public List<EntityRef> suggest() {
return /*all entityrefs of players*/;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment