mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-07-19 22:04:43 +02:00
Revert some plot chat changes.
- Having chat for that plotworld will force it on all players without the bypass permission - Not having it will require the player to opt into plot chat
This commit is contained in:
@ -162,7 +162,7 @@ public class BukkitPlayer extends PlotPlayer {
|
||||
@Override
|
||||
public boolean getAttribute(String key) {
|
||||
key = "plotsquared_user_attributes." + key;
|
||||
if (EconHandler.manager == null) {
|
||||
if (EconHandler.manager == null || player.hasPermission("plotsquared_user_attributes.*")) {
|
||||
Object v = getMeta(key);
|
||||
return v == null ? false : (Boolean) v;
|
||||
}
|
||||
|
Reference in New Issue
Block a user