Mirror von
https://github.com/St3venAU/ArmorStandTools.git
synchronisiert 2024-12-29 04:50:09 +01:00
Update MainListener.java
Dieser Commit ist enthalten in:
Ursprung
f7117a8ddc
Commit
bf549ee223
@ -52,6 +52,23 @@ public class MainListener implements Listener {
|
|||||||
this.plugin = main;
|
this.plugin = main;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@EventHandler(ignoreCancelled = true)
|
||||||
|
public void onCommandProcess(PlayerCommandPreprocessEvent event) {
|
||||||
|
Player player = event.getPlayer();
|
||||||
|
if (!plugin.carryingArmorStand.containsKey(player.getUniqueId()))
|
||||||
|
return;
|
||||||
|
|
||||||
|
String command = event.getMessage().split(" ")[0].toLowerCase();
|
||||||
|
for (String block : Config.commandsBlocked) {
|
||||||
|
if (!command.contains(block))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
player.sendMessage(ChatColor.RED + Config.commandBlocked);
|
||||||
|
event.setCancelled(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onPlayerInteractAtEntity(PlayerInteractAtEntityEvent event) {
|
public void onPlayerInteractAtEntity(PlayerInteractAtEntityEvent event) {
|
||||||
if(event.getRightClicked() instanceof ArmorStand) {
|
if(event.getRightClicked() instanceof ArmorStand) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren