mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-27 03:28:30 +01:00
Merge branch '2.9' of github.com:essentials/Essentials into 2.9
This commit is contained in:
commit
27db9e8c3b
@ -335,14 +335,13 @@ public class EssentialsPlayerListener implements Listener
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private final static List<String> COMMANDS = Arrays.asList("msg", "w", "r", "mail", "m", "t", "whisper", "emsg", "tell", "er", "reply", "ereply", "email", "action", "describe", "eme", "eaction", "edescribe", "etell", "ewhisper", "pm");
|
|
||||||
|
|
||||||
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
|
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
|
||||||
public void onPlayerCommandPreprocess(final PlayerCommandPreprocessEvent event)
|
public void onPlayerCommandPreprocess(final PlayerCommandPreprocessEvent event)
|
||||||
{
|
{
|
||||||
final Player player = event.getPlayer();
|
final Player player = event.getPlayer();
|
||||||
final String cmd = event.getMessage().toLowerCase(Locale.ENGLISH).split(" ")[0].replace("/", "").toLowerCase(Locale.ENGLISH);
|
final String cmd = event.getMessage().toLowerCase(Locale.ENGLISH).split(" ")[0].replace("/", "").toLowerCase(Locale.ENGLISH);
|
||||||
if (COMMANDS.contains(cmd))
|
if (ess.getSettings().getSocialSpyCommands().contains(cmd))
|
||||||
{
|
{
|
||||||
for (Player onlinePlayer : ess.getServer().getOnlinePlayers())
|
for (Player onlinePlayer : ess.getServer().getOnlinePlayers())
|
||||||
{
|
{
|
||||||
|
@ -42,6 +42,8 @@ public interface ISettings extends IConf
|
|||||||
|
|
||||||
double getHealCooldown();
|
double getHealCooldown();
|
||||||
|
|
||||||
|
Set<String> getSocialSpyCommands();
|
||||||
|
|
||||||
Map<String, Object> getKit(String name);
|
Map<String, Object> getKit(String name);
|
||||||
|
|
||||||
ConfigurationSection getKits();
|
ConfigurationSection getKits();
|
||||||
|
@ -237,6 +237,24 @@ public class Settings implements ISettings
|
|||||||
}
|
}
|
||||||
return 0.0;
|
return 0.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private Set<String> socialSpyCommands = new HashSet<String>();
|
||||||
|
|
||||||
|
public Set<String> _getSocialSpyCommands()
|
||||||
|
{
|
||||||
|
Set<String> socialspyCommands = new HashSet<String>();
|
||||||
|
for (String c : config.getStringList("socialspy-commands"))
|
||||||
|
{
|
||||||
|
socialspyCommands.add(c.toLowerCase(Locale.ENGLISH));
|
||||||
|
}
|
||||||
|
|
||||||
|
return socialspyCommands;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Set<String> getSocialSpyCommands() {
|
||||||
|
return socialSpyCommands;
|
||||||
|
}
|
||||||
|
|
||||||
private String nicknamePrefix = "~";
|
private String nicknamePrefix = "~";
|
||||||
|
|
||||||
private String _getNicknamePrefix()
|
private String _getNicknamePrefix()
|
||||||
@ -462,6 +480,7 @@ public class Settings implements ISettings
|
|||||||
disableSuffix = _disableSuffix();
|
disableSuffix = _disableSuffix();
|
||||||
chatRadius = _getChatRadius();
|
chatRadius = _getChatRadius();
|
||||||
commandCosts = _getCommandCosts();
|
commandCosts = _getCommandCosts();
|
||||||
|
socialSpyCommands = _getSocialSpyCommands();
|
||||||
warnOnBuildDisallow = _warnOnBuildDisallow();
|
warnOnBuildDisallow = _warnOnBuildDisallow();
|
||||||
mailsPerMinute = _getMailsPerMinute();
|
mailsPerMinute = _getMailsPerMinute();
|
||||||
}
|
}
|
||||||
|
@ -91,6 +91,32 @@ overridden-commands:
|
|||||||
disabled-commands:
|
disabled-commands:
|
||||||
# - nick
|
# - nick
|
||||||
|
|
||||||
|
# These commands will be shown to players with socialSpy enabled
|
||||||
|
# You can add commands from other plugins you may want to track or
|
||||||
|
# remove commands that are used for something you dont want to spy on
|
||||||
|
socialspy-commands:
|
||||||
|
- msg
|
||||||
|
- w
|
||||||
|
- r
|
||||||
|
- mail
|
||||||
|
- m
|
||||||
|
- t
|
||||||
|
- whisper
|
||||||
|
- emsg
|
||||||
|
- tell
|
||||||
|
- er
|
||||||
|
- reply
|
||||||
|
- ereply
|
||||||
|
- email
|
||||||
|
- action
|
||||||
|
- describe
|
||||||
|
- eme
|
||||||
|
- eaction
|
||||||
|
- edescribe
|
||||||
|
- etell
|
||||||
|
- ewhisper
|
||||||
|
- pm
|
||||||
|
|
||||||
# If you do not wish to use a permission system, you can define a list of 'player perms' below.
|
# If you do not wish to use a permission system, you can define a list of 'player perms' below.
|
||||||
# This list has no effect if you are using a supported permissions system.
|
# This list has no effect if you are using a supported permissions system.
|
||||||
# If you are using an unsupported permissions system simply delete this section.
|
# If you are using an unsupported permissions system simply delete this section.
|
||||||
|
Loading…
Reference in New Issue
Block a user