mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-05 12:02:53 +00:00
Merge pull request #489 from necrodoom/patch-23
fix permission check typo (thanks to #4365)
This commit is contained in:
commit
8ae0ea98a3
1 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,7 @@ public class Commandbook extends EssentialsCommand
|
||||||
|
|
||||||
if (args.length > 1 && args[0].equalsIgnoreCase("author"))
|
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]);
|
bmeta.setAuthor(args[1]);
|
||||||
item.setItemMeta(bmeta);
|
item.setItemMeta(bmeta);
|
||||||
|
@ -69,7 +69,7 @@ public class Commandbook extends EssentialsCommand
|
||||||
else if (item.getType() == Material.BOOK_AND_QUILL)
|
else if (item.getType() == Material.BOOK_AND_QUILL)
|
||||||
{
|
{
|
||||||
BookMeta bmeta = (BookMeta)item.getItemMeta();
|
BookMeta bmeta = (BookMeta)item.getItemMeta();
|
||||||
if (!user.isAuthorized("essentals.book.author"))
|
if (!user.isAuthorized("essentials.book.author"))
|
||||||
{
|
{
|
||||||
bmeta.setAuthor(player);
|
bmeta.setAuthor(player);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue