Version to 8.3
This commit is contained in:
parent
7fcba46c40
commit
370f94a531
|
|
@ -2,7 +2,7 @@ name: GriefPrevention
|
|||
main: me.ryanhamshire.GriefPrevention.GriefPrevention
|
||||
softdepend: [Vault, Multiverse-Core, My Worlds, MystCraft, Transporter]
|
||||
dev-url: http://dev.bukkit.org/server-mods/grief-prevention
|
||||
version: 8.2.3
|
||||
version: 8.3
|
||||
commands:
|
||||
abandonclaim:
|
||||
description: Deletes a claim.
|
||||
|
|
|
|||
|
|
@ -331,7 +331,7 @@ public class BlockEventHandler implements Listener
|
|||
{
|
||||
if(!playerData.warnedAboutBuildingOutsideClaims
|
||||
&& ((playerData.lastClaim == null && playerData.claims.size() == 0)
|
||||
|| playerData.lastClaim.isNear(player.getLocation(), 15)))
|
||||
|| (playerData.lastClaim != null && playerData.lastClaim.isNear(player.getLocation(), 15))))
|
||||
{
|
||||
GriefPrevention.sendMessage(player, TextMode.Warn, Messages.BuildingOutsideClaims);
|
||||
playerData.warnedAboutBuildingOutsideClaims = true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user