Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ ehthumbs_vista.db
[Dd]esktop.ini
$RECYCLE.BIN/
*.lnk

### VSCode ###
/.vscode/
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "eu.decentsoftware.holograms"
version = "2.8.17"
version = "2.8.18"
description = "A lightweight yet very powerful hologram plugin with many features and configuration options."

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,12 @@ public CommandHandler getCommandHandler() {
return true;
}
if (args.length > 2 && sender.hasPermission("dh.admin")) {
if (args[2].equals("*")) {
for (Player player : Bukkit.getOnlinePlayers()) {
hologram.show(player, index);
}
return true;
}
Player player = Bukkit.getPlayer(args[2]);
if (player != null && player.isOnline()) {
hologram.show(player, index);
Expand Down