From f6fc39d2e20789fce1fa54c57e34c7f0f0d554c4 Mon Sep 17 00:00:00 2001 From: boy0001 Date: Fri, 15 May 2015 19:32:32 +1000 Subject: [PATCH] Fixed rating --- PlotSquared/pom.xml | 2 +- .../main/java/com/intellectualcrafters/plot/commands/Info.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 + "");