Mirror von
https://github.com/St3venAU/ArmorStandTools.git
synchronisiert 2024-12-28 04:20:08 +01:00
Explicitly use minecraft give command
/give would use the Essentials command (if installed) which does not support the tags after
Dieser Commit ist enthalten in:
Ursprung
148065dbdc
Commit
c679d9b8f3
@ -414,7 +414,7 @@ public class MainListener implements Listener {
|
||||
if(MC_USERNAME_PATTERN.matcher(input).matches()) {
|
||||
b.setMetadata("protected", new FixedMetadataValue(plugin, true));
|
||||
event.getPlayer().sendMessage(ChatColor.GOLD + Config.pleaseWait);
|
||||
String cmd = "give " + event.getPlayer().getName() + " minecraft:skull 1 3 {SkullOwner:\"" + input + "\"}";
|
||||
String cmd = "minecraft:give " + event.getPlayer().getName() + " minecraft:skull 1 3 {SkullOwner:\"" + input + "\"}";
|
||||
String current = b.getWorld().getGameRuleValue("sendCommandFeedback");
|
||||
b.getWorld().setGameRuleValue("sendCommandFeedback", "false");
|
||||
Bukkit.getServer().dispatchCommand(Bukkit.getServer().getConsoleSender(), cmd);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren