From b67b2d531cb8f5482da3df4c691f653da1dd6366 Mon Sep 17 00:00:00 2001 From: ryanhamshire Date: Mon, 13 Apr 2015 20:30:10 -0700 Subject: [PATCH] Tweaked /claimslist output. --- src/me/ryanhamshire/GriefPrevention/GriefPrevention.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java b/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java index 1bc0e15..8402e2c 100644 --- a/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java +++ b/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java @@ -1599,7 +1599,7 @@ public class GriefPrevention extends JavaPlugin GriefPrevention.sendMessage(player, TextMode.Instr, " " + playerData.getAccruedClaimBlocks() + " blocks from play +" + (playerData.getBonusClaimBlocks() + this.dataStore.getGroupBonusBlocks(otherPlayer.getUniqueId())) + " bonus = " + (playerData.getAccruedClaimBlocks() + playerData.getBonusClaimBlocks() + this.dataStore.getGroupBonusBlocks(otherPlayer.getUniqueId())) + " total."); if(claims.size() > 0) { - GriefPrevention.sendMessage(player, TextMode.Instr, "Your Claims:"); + GriefPrevention.sendMessage(player, TextMode.Instr, "Claims:"); for(int i = 0; i < playerData.getClaims().size(); i++) { Claim claim = playerData.getClaims().get(i);