Version to 11.1

This commit is contained in:
ryanhamshire 2015-03-19 09:43:00 -07:00
parent 89a434f200
commit d15da5d02c
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ main: me.ryanhamshire.GriefPrevention.GriefPrevention
softdepend: [Vault, Multiverse-Core, My Worlds, MystCraft, Transporter, TheUnderground, WorldGuard, WorldEdit]
dev-url: http://dev.bukkit.org/server-mods/grief-prevention
loadbefore: [TheUnderground]
version: 11.0.2
version: 11.1
commands:
abandonclaim:
description: Deletes a claim.

View File

@ -132,7 +132,7 @@ public class BlockEventHandler implements Listener
PlayerData playerData = this.dataStore.getPlayerData(player.getUniqueId());
if(notEmpty && playerData.lastMessage != null && !playerData.lastMessage.equals(signMessage))
{
GriefPrevention.AddLogEntry("[Sign Placement] <" + player.getName() + "> " + " @ " + GriefPrevention.getfriendlyLocationString(event.getBlock().getLocation()) + lines.toString().replace("\r\n", ";"));
GriefPrevention.AddLogEntry("[Sign Placement] <" + player.getName() + "> " + " @ " + GriefPrevention.getfriendlyLocationString(event.getBlock().getLocation()) + ": " + lines.toString().replace("\n ", ";"));
playerData.lastMessage = signMessage;
if(!player.hasPermission("griefprevention.eavesdrop"))

View File

@ -338,7 +338,7 @@ class PlayerEventHandler implements Listener
if(mutedReason != null)
{
//make a log entry
GriefPrevention.AddLogEntry("Muted " + mutedReason + " from " + player.getName() + ": " + message);
GriefPrevention.AddLogEntry("Muted " + mutedReason + ".");
//cancelling the event guarantees other players don't receive the message
return true;