Skip to content

Commit

Permalink
fix follow command max args value
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Nov 30, 2018
1 parent 05abc92 commit f7b03d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ public void flyable(CommandContext args, CommandSender sender, NPC npc) throws C
desc = "Toggles NPC following you",
modifiers = { "follow" },
min = 1,
max = 1,
max = 2,
permission = "citizens.npc.follow")
public void follow(CommandContext args, Player sender, NPC npc) throws CommandException {
boolean protect = args.hasFlag('p');
Expand Down

0 comments on commit f7b03d2

Please sign in to comment.