From e5fa2e4eab62059d536d3938e20bf9ab9c1d2f88 Mon Sep 17 00:00:00 2001 From: ryanhamshire Date: Thu, 16 Jul 2015 21:03:24 -0700 Subject: [PATCH] API to determine whether a player is /softmuted. --- src/me/ryanhamshire/GriefPrevention/DataStore.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/me/ryanhamshire/GriefPrevention/DataStore.java b/src/me/ryanhamshire/GriefPrevention/DataStore.java index 4d59023..db4c5e2 100644 --- a/src/me/ryanhamshire/GriefPrevention/DataStore.java +++ b/src/me/ryanhamshire/GriefPrevention/DataStore.java @@ -220,7 +220,7 @@ public abstract class DataStore return newValue; } - boolean isSoftMuted(UUID playerID) + public boolean isSoftMuted(UUID playerID) { Boolean mapEntry = this.softMuteMap.get(playerID); if(mapEntry == null || mapEntry == Boolean.FALSE)