Skip to content

Commit

Permalink
Revert "Add permission for invsee by right click"
Browse files Browse the repository at this point in the history
This reverts commit b4c34bb.
  • Loading branch information
tanyaofei committed Oct 5, 2024
1 parent 9d6193a commit 68eb202
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public interface Permission {
String wakeup = "fakeplayer.command.wakeup";
String cmd = "fakeplayer.command.cmd";
String stop = "fakeplayer.command.stop";
String rightClickInvsee = "fakeplayer.interact.right-click-invsee";


String op = "OP";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package io.github.hello09x.fakeplayer.core.manager.invsee;

import io.github.hello09x.devtools.core.utils.ComponentUtils;
import io.github.hello09x.fakeplayer.core.command.Permission;
import io.github.hello09x.fakeplayer.core.manager.FakeplayerList;
import io.github.hello09x.fakeplayer.core.manager.FakeplayerManager;
import org.bukkit.Sound;
Expand Down Expand Up @@ -67,10 +66,6 @@ public void rightClickToInvsee(@NotNull PlayerInteractAtEntityEvent event) {
return;
}

if (!event.getPlayer().hasPermission(Permission.rightClickInvsee)) {
return;
}

this.invsee(event.getPlayer(), whom); // fakeplayer check here
}

Expand Down
6 changes: 1 addition & 5 deletions fakeplayer-core/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,16 +84,13 @@ permissions:
description: 'Allow player to run /fp hold'
fakeplayer.command.cmd:
description: 'Allow player to run /fp cmd'
fakeplayer.command.stop:
description: 'Allow player to run /fp stop'
fakeplayer.config.replenish:
description: 'Allow player to configure fake players can replenish'
fakeplayer.config.replenish.chest:
description: 'Allow player to configure fake players can replenish from nearby chest'
fakeplayer.config.autofish:
description: 'Allow player to configure fake players to auto-fishing'
fakeplayer.interact.right-click-invsee:
description: 'Allow player to open inventory of fake players by right clicking'

fakeplayer.spawn:
description: 'Includes all basic permissions'
children:
Expand All @@ -108,7 +105,6 @@ permissions:
- fakeplayer.command.dropinv
- fakeplayer.command.skin
- fakeplayer.command.invsee
- fakeplayer.interact.right-click-invsee
- fakeplayer.command.status
- fakeplayer.command.respawn
- fakeplayer.command.config
Expand Down

0 comments on commit 68eb202

Please sign in to comment.