fix permission check typo (thanks to #4365)

This commit is contained in:
Necrodoom 2013-06-18 20:57:30 +03:00
parent fdb5d85ba5
commit 5338f6b706

View File

@ -27,7 +27,7 @@ public class Commandbook extends EssentialsCommand
if (args.length > 1 && args[0].equalsIgnoreCase("author"))
{
if (user.isAuthorized("essentals.book.author") && (isAuthor(bmeta, player) || user.isAuthorized("essentials.book.others")))
if (user.isAuthorized("essentials.book.author") && (isAuthor(bmeta, player) || user.isAuthorized("essentials.book.others")))
{
bmeta.setAuthor(args[1]);
item.setItemMeta(bmeta);
@ -69,7 +69,7 @@ public class Commandbook extends EssentialsCommand
else if (item.getType() == Material.BOOK_AND_QUILL)
{
BookMeta bmeta = (BookMeta)item.getItemMeta();
if (!user.isAuthorized("essentals.book.author"))
if (!user.isAuthorized("essentials.book.author"))
{
bmeta.setAuthor(player);
}
@ -89,4 +89,4 @@ public class Commandbook extends EssentialsCommand
String author = bmeta.getAuthor();
return author != null && author.equalsIgnoreCase(player);
}
}
}