RedstoneTester #202
@ -19,6 +19,7 @@
|
||||
|
||||
package de.steamwar.bausystem.commands;
|
||||
|
||||
import de.steamwar.bausystem.BauSystem;
|
||||
import de.steamwar.bausystem.PlayerUtils;
|
||||
import de.steamwar.bausystem.world.RedstoneListener;
|
||||
import org.bukkit.command.Command;
|
||||
@ -29,10 +30,14 @@ import org.bukkit.entity.Player;
|
||||
public class CommandRedstoneTester implements CommandExecutor {
|
||||
|
||||
@Override
|
||||
public boolean onCommand(CommandSender commandSender, Command command, String s, String[] strings) {
|
||||
public boolean onCommand(CommandSender commandSender, Command command, String s, String[] args) {
|
||||
if (!(commandSender instanceof Player))
|
||||
YoyoNow markierte diese Unterhaltung als gelöst
Veraltet
|
||||
return false;
|
||||
Player player = (Player) commandSender;
|
||||
if (args.length != 0 && args[0].equalsIgnoreCase("help")) {
|
||||
player.sendMessage(BauSystem.PREFIX + "Messe die Zeit zwischen der Aktivierung zweier Redstone Komponenten");
|
||||
return false;
|
||||
}
|
||||
PlayerUtils.giveItemToPlayer(player, RedstoneListener.WAND);
|
||||
return false;
|
||||
}
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren
Könnte man bitte mal versuchen diese Command Syntaxen Konsistent halten?
Die erste Zeile ist die help nachricht um das feature zu verstehen.
Ich hab die andere Zeile makiert