mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-02-10 01:11:22 +01:00
Remove dura command and merge into itemdb.
This commit is contained in:
parent
57c1d75779
commit
024aff0af5
@ -1,41 +0,0 @@
|
|||||||
package com.earth2me.essentials.commands;
|
|
||||||
|
|
||||||
import static com.earth2me.essentials.I18n._;
|
|
||||||
import com.earth2me.essentials.User;
|
|
||||||
import org.bukkit.Material;
|
|
||||||
import org.bukkit.Server;
|
|
||||||
import org.bukkit.inventory.ItemStack;
|
|
||||||
|
|
||||||
public class Commanddurability extends EssentialsCommand
|
|
||||||
{
|
|
||||||
public int durability;
|
|
||||||
public int maxuses;
|
|
||||||
|
|
||||||
public Commanddurability()
|
|
||||||
{
|
|
||||||
super("durability");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
|
|
||||||
{
|
|
||||||
ItemStack itemStack = user.getItemInHand();
|
|
||||||
maxuses = itemStack.getType().getMaxDurability();
|
|
||||||
durability = ((itemStack.getType().getMaxDurability() + 1) - itemStack.getDurability());
|
|
||||||
if (itemStack.getType() != Material.AIR)
|
|
||||||
{
|
|
||||||
if (maxuses != 0)
|
|
||||||
{
|
|
||||||
user.sendMessage(_("durability", Integer.toString(durability)));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
user.sendMessage(_("noDurability"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
user.sendMessage(_("nothingInHand"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,5 +1,7 @@
|
|||||||
package com.earth2me.essentials.commands;
|
package com.earth2me.essentials.commands;
|
||||||
|
|
||||||
|
import static com.earth2me.essentials.I18n._;
|
||||||
|
import org.bukkit.Material;
|
||||||
import org.bukkit.Server;
|
import org.bukkit.Server;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
@ -33,5 +35,15 @@ public class Commanditemdb extends EssentialsCommand
|
|||||||
itemStack = ess.getItemDb().get(args[0]);
|
itemStack = ess.getItemDb().get(args[0]);
|
||||||
}
|
}
|
||||||
sender.sendMessage(itemStack.getType().toString() + "- " + itemStack.getTypeId() + ":" + Integer.toString(itemStack.getData().getData()));
|
sender.sendMessage(itemStack.getType().toString() + "- " + itemStack.getTypeId() + ":" + Integer.toString(itemStack.getData().getData()));
|
||||||
|
|
||||||
|
int maxuses = itemStack.getType().getMaxDurability();
|
||||||
|
int durability = ((itemStack.getType().getMaxDurability() + 1) - itemStack.getDurability());
|
||||||
|
if (itemStack.getType() != Material.AIR)
|
||||||
|
{
|
||||||
|
if (maxuses != 0)
|
||||||
|
{
|
||||||
|
sender.sendMessage(_("durability", Integer.toString(durability)));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -79,10 +79,6 @@ commands:
|
|||||||
description: States current depth, relative to sea level.
|
description: States current depth, relative to sea level.
|
||||||
usage: /depth
|
usage: /depth
|
||||||
aliases: [edepth]
|
aliases: [edepth]
|
||||||
durability:
|
|
||||||
description: Shows the uses an item has left.
|
|
||||||
usage: /<command>
|
|
||||||
aliases: [edura,dura,edurability]
|
|
||||||
eco:
|
eco:
|
||||||
description: Manages the server economy.
|
description: Manages the server economy.
|
||||||
usage: /<command> <give|take|reset> <player> <amount>
|
usage: /<command> <give|take|reset> <player> <amount>
|
||||||
@ -114,7 +110,7 @@ commands:
|
|||||||
itemdb:
|
itemdb:
|
||||||
description: Searches for an item.
|
description: Searches for an item.
|
||||||
usage: /<command> <item>
|
usage: /<command> <item>
|
||||||
aliases: [eitemdb]
|
aliases: [eitemdb,itemno,eitemno,durability,dura,edura,edurability]
|
||||||
fireball:
|
fireball:
|
||||||
description: Throw a fireball.
|
description: Throw a fireball.
|
||||||
usage: /<command> [small]
|
usage: /<command> [small]
|
||||||
|
Loading…
Reference in New Issue
Block a user