diff --git a/PlotSquared/pom.xml b/PlotSquared/pom.xml index a2bb715dd..1baeb36ee 100644 --- a/PlotSquared/pom.xml +++ b/PlotSquared/pom.xml @@ -8,7 +8,7 @@ UTF-8 PlotSquared - 2.11.3 + 2.11.4 PlotSquared jar diff --git a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Info.java b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Info.java index c127b4bd9..68ff20247 100644 --- a/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Info.java +++ b/PlotSquared/src/main/java/com/intellectualcrafters/plot/commands/Info.java @@ -187,7 +187,7 @@ public class Info extends SubCommand { info = info.replaceAll("%owner%", owner); info = info.replaceAll("%members%", members); info = info.replaceAll("%trusted%", trusted); - info = info.replaceAll("%helpers%", trusted); + info = info.replaceAll("%helpers%", members); info = info.replaceAll("%denied%", denied); info = info.replaceAll("%flags%", Matcher.quoteReplacement(flags)); info = info.replaceAll("%build%", build + "");