mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-11-22 18:45:29 +01:00
( Patch for #1453 ) proper wolf command output
"i" flag is left in as a way to get info output but not actually checked (as info output should also appear if changes are made)
This commit is contained in:
parent
acb50f6a50
commit
ec8a16c30b
@ -1971,7 +1971,7 @@ public class NPCCommands {
|
||||
min = 1,
|
||||
max = 1,
|
||||
requiresFlags = true,
|
||||
flags = "sat",
|
||||
flags = "sati",
|
||||
permission = "citizens.npc.wolf")
|
||||
@Requirements(selected = true, ownership = true, types = EntityType.WOLF)
|
||||
public void wolf(CommandContext args, CommandSender sender, NPC npc) throws CommandException {
|
||||
@ -2002,9 +2002,7 @@ public class NPCCommands {
|
||||
throw new CommandException(Messages.COLLAR_COLOUR_NOT_SUPPORTED, unparsed);
|
||||
trait.setCollarColor(color);
|
||||
}
|
||||
if (args.hasFlag('i')) {
|
||||
Messaging.sendTr(sender, Messages.WOLF_TRAIT_UPDATED, npc.getName(), args.hasFlag('a'), args.hasFlag('s'),
|
||||
args.hasFlag('t'), trait.getCollarColor().name());
|
||||
}
|
||||
Messaging.sendTr(sender, Messages.WOLF_TRAIT_UPDATED, npc.getName(), trait.isAngry(), trait.isSitting(),
|
||||
trait.isTamed(), trait.getCollarColor().name());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user