From 01c77f85ab6ad58c7101add0625406a6c19deb3d Mon Sep 17 00:00:00 2001 From: ryanhamshire Date: Mon, 13 Oct 2014 14:30:41 -0700 Subject: [PATCH] Eavesdrop by default. On by default, and now including /w and /t by default. --- src/me/ryanhamshire/GriefPrevention/GriefPrevention.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java b/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java index 3e754f7..8105ea3 100644 --- a/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java +++ b/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java @@ -347,8 +347,8 @@ public class GriefPrevention extends JavaPlugin this.config_fireSpreads = config.getBoolean("GriefPrevention.FireSpreads", false); this.config_fireDestroys = config.getBoolean("GriefPrevention.FireDestroys", false); - this.config_eavesdrop = config.getBoolean("GriefPrevention.EavesdropEnabled", false); - String whisperCommandsToMonitor = config.getString("GriefPrevention.WhisperCommands", "/tell;/pm;/r"); + this.config_eavesdrop = config.getBoolean("GriefPrevention.EavesdropEnabled", true); + String whisperCommandsToMonitor = config.getString("GriefPrevention.WhisperCommands", "/tell;/pm;/r;/w;/t"); this.config_smartBan = config.getBoolean("GriefPrevention.SmartBan", true);