Merge branch '1.6.x' into permsfix
This commit is contained in:
commit
ca75e76449
@ -496,7 +496,7 @@ public class SavageFactions extends MPlugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public ItemStack createItem(Material material, int amount, short datavalue, String name, List<String> lore) {
|
public ItemStack createItem(Material material, int amount, short datavalue, String name, List<String> lore) {
|
||||||
ItemStack item = new ItemStack(material, amount, datavalue);
|
ItemStack item = new ItemStack(MultiversionMaterials.fromString(material.toString()).parseMaterial(), amount, datavalue);
|
||||||
ItemMeta meta = item.getItemMeta();
|
ItemMeta meta = item.getItemMeta();
|
||||||
meta.setDisplayName(color(name));
|
meta.setDisplayName(color(name));
|
||||||
meta.setLore(colorList(lore));
|
meta.setLore(colorList(lore));
|
||||||
|
@ -34,7 +34,7 @@ public class CmdAdmin extends FCommand {
|
|||||||
@Override
|
@Override
|
||||||
public void perform() {
|
public void perform() {
|
||||||
FPlayer fyou = this.argAsBestFPlayerMatch(0);
|
FPlayer fyou = this.argAsBestFPlayerMatch(0);
|
||||||
if (fyou == null) {
|
if (fyou == null || fyou.getFaction().isWarZone() || fyou.getFaction().isWilderness() || fyou.getFaction().isSafeZone()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -44,9 +44,7 @@ public class CmdFly extends FCommand {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
id = Bukkit.getScheduler().scheduleSyncRepeatingTask(SavageFactions.plugin, new Runnable() {
|
id = Bukkit.getScheduler().scheduleSyncRepeatingTask(SavageFactions.plugin, () -> {
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
for (String name : flyMap.keySet()) {
|
for (String name : flyMap.keySet()) {
|
||||||
Player player = Bukkit.getPlayer(name);
|
Player player = Bukkit.getPlayer(name);
|
||||||
if (player == null) {
|
if (player == null) {
|
||||||
@ -83,14 +81,11 @@ public class CmdFly extends FCommand {
|
|||||||
Bukkit.getScheduler().cancelTask(id);
|
Bukkit.getScheduler().cancelTask(id);
|
||||||
id = -1;
|
id = -1;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}, 10L, 3L);
|
}, 10L, 3L);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void startFlyCheck() {
|
public static void startFlyCheck() {
|
||||||
flyid = Bukkit.getScheduler().scheduleSyncRepeatingTask(SavageFactions.plugin, new Runnable() {
|
flyid = Bukkit.getScheduler().scheduleSyncRepeatingTask(SavageFactions.plugin, () -> { //threw the exception for now, until I recode fly :( Cringe.
|
||||||
@Override
|
|
||||||
public void run() throws ConcurrentModificationException { //threw the exception for now, until I recode fly :( Cringe.
|
|
||||||
checkTaskState();
|
checkTaskState();
|
||||||
if (flyMap.keySet().size() != 0) {
|
if (flyMap.keySet().size() != 0) {
|
||||||
for (String name : flyMap.keySet()) {
|
for (String name : flyMap.keySet()) {
|
||||||
@ -136,7 +131,6 @@ public class CmdFly extends FCommand {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
}, 20L, 20L);
|
}, 20L, 20L);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -226,9 +220,7 @@ public class CmdFly extends FCommand {
|
|||||||
|
|
||||||
if (fme.canFlyAtLocation())
|
if (fme.canFlyAtLocation())
|
||||||
|
|
||||||
this.doWarmUp(WarmUpUtil.Warmup.FLIGHT, TL.WARMUPS_NOTIFY_FLIGHT, "Fly", new Runnable() {
|
this.doWarmUp(WarmUpUtil.Warmup.FLIGHT, TL.WARMUPS_NOTIFY_FLIGHT, "Fly", () -> {
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
fme.setFlying(true);
|
fme.setFlying(true);
|
||||||
flyMap.put(player.getName(), true);
|
flyMap.put(player.getName(), true);
|
||||||
if (id == -1) {
|
if (id == -1) {
|
||||||
@ -239,7 +231,6 @@ public class CmdFly extends FCommand {
|
|||||||
if (flyid == -1) {
|
if (flyid == -1) {
|
||||||
startFlyCheck();
|
startFlyCheck();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}, this.p.getConfig().getLong("warmups.f-fly", 0));
|
}, this.p.getConfig().getLong("warmups.f-fly", 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,9 +8,11 @@ import com.massivecraft.factions.zcore.util.TL;
|
|||||||
public class CmdPaypalSee extends FCommand {
|
public class CmdPaypalSee extends FCommand {
|
||||||
public CmdPaypalSee() {
|
public CmdPaypalSee() {
|
||||||
aliases.add("seepaypal");
|
aliases.add("seepaypal");
|
||||||
aliases.add("getpaypal");
|
|
||||||
requiredArgs.add("faction");
|
requiredArgs.add("faction");
|
||||||
|
|
||||||
permission = Permission.ADMIN.node;
|
permission = Permission.ADMIN.node;
|
||||||
|
|
||||||
disableOnLock = false;
|
disableOnLock = false;
|
||||||
senderMustBePlayer = false;
|
senderMustBePlayer = false;
|
||||||
senderMustBeMember = false;
|
senderMustBeMember = false;
|
||||||
@ -19,28 +21,29 @@ public class CmdPaypalSee extends FCommand {
|
|||||||
senderMustBeAdmin = false;
|
senderMustBeAdmin = false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@Override
|
||||||
public void perform() {
|
public void perform() {
|
||||||
if (!SavageFactions.plugin.getConfig().getBoolean("fpaypal.Enabled")) {
|
if (!SavageFactions.plugin.getConfig().getBoolean("fpaypal.Enabled")) {
|
||||||
fme.msg(TL.GENERIC_DISABLED);
|
fme.msg(TL.GENERIC_DISABLED);
|
||||||
} else {
|
return;
|
||||||
|
}
|
||||||
Faction faction = argAsFaction(0);
|
Faction faction = argAsFaction(0);
|
||||||
|
|
||||||
if (faction != null) {
|
if (faction != null)
|
||||||
|
return;
|
||||||
|
|
||||||
if (!faction.isWilderness() && !faction.isSafeZone() && !faction.isWarZone()) {
|
if (!faction.isWilderness() && !faction.isSafeZone() && !faction.isWarZone()) {
|
||||||
|
fme.msg(TL.COMMAND_PAYPALSEE_FACTION_NOFACTION.toString(), me.getName());
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (faction.getPaypal() != null) {
|
if (faction.getPaypal() != null) {
|
||||||
fme.msg(TL.COMMAND_PAYPALSEE_FACTION_PAYPAL.toString(), faction.getTag(), faction.getPaypal());
|
fme.msg(TL.COMMAND_PAYPALSEE_FACTION_PAYPAL.toString(), faction.getTag(), faction.getPaypal());
|
||||||
} else {
|
} else {
|
||||||
fme.msg(TL.COMMAND_PAYPALSEE_FACTION_NOTSET.toString(), faction.getTag(), faction.getPaypal());
|
fme.msg(TL.COMMAND_PAYPALSEE_FACTION_NOTSET.toString(), faction.getTag(), faction.getPaypal());
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
|
||||||
fme.msg(TL.COMMAND_PAYPALSEE_FACTION_NOFACTION.toString(), me.getName());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public TL getUsageTranslation() {
|
public TL getUsageTranslation() {
|
||||||
return TL.COMMAND_PAYPALSEE_DESCRIPTION;
|
return TL.COMMAND_PAYPALSEE_DESCRIPTION;
|
||||||
}
|
}
|
||||||
|
@ -8,30 +8,31 @@ public class CmdPaypalSet extends FCommand {
|
|||||||
|
|
||||||
public CmdPaypalSet() {
|
public CmdPaypalSet() {
|
||||||
this.aliases.add("setpaypal");
|
this.aliases.add("setpaypal");
|
||||||
this.aliases.add("paypal");
|
|
||||||
this.requiredArgs.add("email");
|
this.requiredArgs.add("email");
|
||||||
this.permission = Permission.PAYPALSET.node;
|
this.permission = Permission.PAYPALSET.node;
|
||||||
this.disableOnLock = false;
|
this.disableOnLock = false;
|
||||||
this.senderMustBePlayer = true;
|
this.senderMustBePlayer = true;
|
||||||
this.senderMustBeMember = false;
|
this.senderMustBeMember = false;
|
||||||
this.senderMustBeModerator = false;
|
this.senderMustBeModerator = false;
|
||||||
this.senderMustBeColeader = true;
|
this.senderMustBeColeader = false;
|
||||||
this.senderMustBeAdmin = false;
|
this.senderMustBeAdmin = true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@Override
|
||||||
public void perform() {
|
public void perform() {
|
||||||
if (!SavageFactions.plugin.getConfig().getBoolean("fpaypal.Enabled")) {
|
if (!SavageFactions.plugin.getConfig().getBoolean("fpaypal.Enabled")) {
|
||||||
fme.msg(TL.GENERIC_DISABLED);
|
fme.msg(TL.GENERIC_DISABLED);
|
||||||
} else {
|
return;
|
||||||
String paypal = argAsString(0);
|
}
|
||||||
if (paypal != null) {
|
|
||||||
|
String paypal = this.argAsString(0);
|
||||||
|
if(paypal == null)
|
||||||
|
return;
|
||||||
myFaction.paypalSet(paypal);
|
myFaction.paypalSet(paypal);
|
||||||
fme.msg(TL.COMMAND_PAYPALSET_SUCCESSFUL, paypal);
|
fme.msg(TL.COMMAND_PAYPALSET_SUCCESSFUL, paypal);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
@Override
|
||||||
public TL getUsageTranslation() {
|
public TL getUsageTranslation() {
|
||||||
return TL.COMMAND_PAYPALSET_DESCRIPTION;
|
return TL.COMMAND_PAYPALSET_DESCRIPTION;
|
||||||
}
|
}
|
||||||
|
@ -256,11 +256,7 @@ public class FactionsEntityListener implements Listener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Cancel the event if no block will explode
|
// Cancel the event if no block will explode
|
||||||
if (event.blockList().isEmpty()) {
|
if (!event.blockList().isEmpty() && (boomer instanceof TNTPrimed || boomer instanceof ExplosiveMinecart) && Conf.handleExploitTNTWaterlog) {
|
||||||
event.setCancelled(true);
|
|
||||||
|
|
||||||
// Or handle the exploit of TNT in water/lava
|
|
||||||
} else if ((boomer instanceof TNTPrimed || boomer instanceof ExplosiveMinecart) && Conf.handleExploitTNTWaterlog) {
|
|
||||||
// TNT in water/lava doesn't normally destroy any surrounding blocks, which is usually desired behavior, but...
|
// TNT in water/lava doesn't normally destroy any surrounding blocks, which is usually desired behavior, but...
|
||||||
// this change below provides workaround for waterwalling providing perfect protection,
|
// this change below provides workaround for waterwalling providing perfect protection,
|
||||||
// and makes cheap (non-obsidian) TNT cannons require minor maintenance between shots
|
// and makes cheap (non-obsidian) TNT cannons require minor maintenance between shots
|
||||||
@ -280,7 +276,7 @@ public class FactionsEntityListener implements Listener {
|
|||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
int id = target.getType().getId();
|
int id = target.getType().getId();
|
||||||
// ignore air, bedrock, water, lava, obsidian, enchanting table, etc.... too bad we can't get a blast resistance value through Bukkit yet
|
// ignore air, bedrock, water, lava, obsidian, enchanting table, etc.... too bad we can't get a blast resistance value through Bukkit yet
|
||||||
if (id != 0 && (id < 7 || id > 11) && id != 49 && id != 90 && id != 116 && id != 119 && id != 120 && id != 130) {
|
if (id != 0 && (id < 7 || id > 11) && id != 90 && id != 116 && id != 119 && id != 120 && id != 130) {
|
||||||
target.breakNaturally();
|
target.breakNaturally();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,7 @@ import com.massivecraft.factions.util.MultiversionMaterials;
|
|||||||
import com.massivecraft.factions.util.VisualizeUtil;
|
import com.massivecraft.factions.util.VisualizeUtil;
|
||||||
import com.massivecraft.factions.zcore.fperms.Access;
|
import com.massivecraft.factions.zcore.fperms.Access;
|
||||||
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
||||||
import com.massivecraft.factions.zcore.persist.*;
|
import com.massivecraft.factions.zcore.persist.MemoryFPlayer;
|
||||||
import com.massivecraft.factions.zcore.util.TL;
|
import com.massivecraft.factions.zcore.util.TL;
|
||||||
import com.massivecraft.factions.zcore.util.TagUtil;
|
import com.massivecraft.factions.zcore.util.TagUtil;
|
||||||
import com.massivecraft.factions.zcore.util.TextUtil;
|
import com.massivecraft.factions.zcore.util.TextUtil;
|
||||||
@ -499,7 +499,7 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
boolean isHome = false;
|
boolean isHome = false;
|
||||||
for (String str : SavageFactions.plugin.ess.getUser(event.getPlayer()).getHomes()) {
|
for (String str : SavageFactions.plugin.ess.getUser(event.getPlayer()).getHomes()) {
|
||||||
Location home = SavageFactions.plugin.ess.getUser(event.getPlayer()).getHome(str);
|
Location home = SavageFactions.plugin.ess.getUser(event.getPlayer()).getHome(str);
|
||||||
if (home.getBlockX() == event.getTo().getBlockX() && home.getBlockY() == event.getTo().getBlockY() && home.getBlockZ() == event.getTo().getBlockZ()) {
|
if (home.getBlockX() == event.getTo().getBlockX() && home.getBlockZ() == event.getTo().getBlockZ()) {
|
||||||
isHome = true;
|
isHome = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -747,9 +747,9 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
if (event.getPlayer().getItemInHand() != null) {
|
if (event.getPlayer().getItemInHand() != null) {
|
||||||
Material handItem = event.getPlayer().getItemInHand().getType();
|
Material handItem = event.getPlayer().getItemInHand().getType();
|
||||||
if (handItem.isEdible()
|
if (handItem.isEdible()
|
||||||
|| handItem.equals(Material.POTION)
|
|| handItem.equals(MultiversionMaterials.POTION.parseMaterial())
|
||||||
|| handItem.equals(Material.LINGERING_POTION)
|
|| handItem.equals(MultiversionMaterials.LINGERING_POTION.parseMaterial())
|
||||||
|| handItem.equals(Material.SPLASH_POTION)) {
|
|| handItem.equals(MultiversionMaterials.SPLASH_POTION.parseMaterial())) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -890,7 +890,7 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
/// <param name="loc">The World location where the action is being executed</param>
|
/// <param name="loc">The World location where the action is being executed</param>
|
||||||
/// <param name="myFaction">The faction of the player being checked</param>
|
/// <param name="myFaction">The faction of the player being checked</param>
|
||||||
/// <param name="access">The current's faction access permission for the action</param>
|
/// <param name="access">The current's faction access permission for the action</param>
|
||||||
private static boolean CheckPlayerAccess(Player player, FPlayer me, FLocation loc, Faction myFaction, Access access, PermissableAction action, boolean pain) {
|
private static boolean CheckPlayerAccess(Player player, FPlayer me, FLocation loc, Faction factionToCheck, Access access, PermissableAction action, boolean pain) {
|
||||||
boolean doPain = pain && Conf.handleExploitInteractionSpam;
|
boolean doPain = pain && Conf.handleExploitInteractionSpam;
|
||||||
if (access != null && access != Access.UNDEFINED) {
|
if (access != null && access != Access.UNDEFINED) {
|
||||||
// TODO: Update this once new access values are added other than just allow / deny.
|
// TODO: Update this once new access values are added other than just allow / deny.
|
||||||
@ -898,6 +898,11 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
if ((landOwned && myFaction.getOwnerListString(loc).contains(player.getName())) || (me.getRole() == Role.LEADER && me.getFactionId().equals(myFaction.getId()))) return true;
|
if ((landOwned && myFaction.getOwnerListString(loc).contains(player.getName())) || (me.getRole() == Role.LEADER && me.getFactionId().equals(myFaction.getId()))) return true;
|
||||||
else if (landOwned && !myFaction.getOwnerListString(loc).contains(player.getName())) {
|
else if (landOwned && !myFaction.getOwnerListString(loc).contains(player.getName())) {
|
||||||
me.msg(TL.ACTIONS_OWNEDTERRITORYDENY.toString().replace("{owners}", myFaction.getOwnerListString(loc)));
|
me.msg(TL.ACTIONS_OWNEDTERRITORYDENY.toString().replace("{owners}", myFaction.getOwnerListString(loc)));
|
||||||
|
boolean landOwned = (factionToCheck.doesLocationHaveOwnersSet(loc) && !factionToCheck.getOwnerList(loc).isEmpty());
|
||||||
|
if ((landOwned && factionToCheck.getOwnerListString(loc).contains(player.getName())) || (me.getRole() == Role.LEADER && me.getFactionId().equals(factionToCheck.getId())))
|
||||||
|
return true;
|
||||||
|
else if (landOwned && !factionToCheck.getOwnerListString(loc).contains(player.getName())) {
|
||||||
|
me.msg("<b>You can't do that in this territory, it is owned by: " + factionToCheck.getOwnerListString(loc));
|
||||||
if (doPain) {
|
if (doPain) {
|
||||||
player.damage(Conf.actionDeniedPainAmount);
|
player.damage(Conf.actionDeniedPainAmount);
|
||||||
}
|
}
|
||||||
@ -909,6 +914,12 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
me.msg(TL.ACTIONS_NOPERMISSION.toString().replace("{faction}", myFaction.getTag(me.getFaction())).replace("{action}", action.toString()));
|
me.msg(TL.ACTIONS_NOPERMISSION.toString().replace("{faction}", myFaction.getTag(me.getFaction())).replace("{action}", action.toString()));
|
||||||
|
me.msg("You cannot " + action + " in the territory of " + factionToCheck.getTag(me.getFaction()));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (me.getRole().equals(Role.LEADER) && me.getFaction().equals(factionToCheck)) return true;
|
||||||
|
me.msg("You cannot " + action + " in the territory of " + factionToCheck.getTag(me.getFaction()));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -2,6 +2,7 @@ package com.massivecraft.factions.struct;
|
|||||||
|
|
||||||
import com.massivecraft.factions.Conf;
|
import com.massivecraft.factions.Conf;
|
||||||
import com.massivecraft.factions.SavageFactions;
|
import com.massivecraft.factions.SavageFactions;
|
||||||
|
import com.massivecraft.factions.util.MultiversionMaterials;
|
||||||
import com.massivecraft.factions.zcore.fperms.Permissable;
|
import com.massivecraft.factions.zcore.fperms.Permissable;
|
||||||
import com.massivecraft.factions.zcore.util.TL;
|
import com.massivecraft.factions.zcore.util.TL;
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
@ -203,7 +204,7 @@ public enum Relation implements Permissable {
|
|||||||
String displayName = replacePlaceholders(RELATION_CONFIG.getString("placeholder-item.name", ""));
|
String displayName = replacePlaceholders(RELATION_CONFIG.getString("placeholder-item.name", ""));
|
||||||
List<String> lore = new ArrayList<>();
|
List<String> lore = new ArrayList<>();
|
||||||
|
|
||||||
Material material = Material.matchMaterial(RELATION_CONFIG.getString("materials." + name().toLowerCase()));
|
Material material = MultiversionMaterials.fromString(RELATION_CONFIG.getString("materials." + name().toLowerCase())).parseMaterial();
|
||||||
if (material == null) {
|
if (material == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ package com.massivecraft.factions.struct;
|
|||||||
|
|
||||||
import com.massivecraft.factions.Conf;
|
import com.massivecraft.factions.Conf;
|
||||||
import com.massivecraft.factions.SavageFactions;
|
import com.massivecraft.factions.SavageFactions;
|
||||||
|
import com.massivecraft.factions.util.MultiversionMaterials;
|
||||||
import com.massivecraft.factions.zcore.fperms.Permissable;
|
import com.massivecraft.factions.zcore.fperms.Permissable;
|
||||||
import com.massivecraft.factions.zcore.util.TL;
|
import com.massivecraft.factions.zcore.util.TL;
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
@ -117,7 +118,7 @@ public enum Role implements Permissable {
|
|||||||
String displayName = replacePlaceholders(RELATION_CONFIG.getString("placeholder-item.name", ""));
|
String displayName = replacePlaceholders(RELATION_CONFIG.getString("placeholder-item.name", ""));
|
||||||
List<String> lore = new ArrayList<>();
|
List<String> lore = new ArrayList<>();
|
||||||
|
|
||||||
Material material = Material.matchMaterial(RELATION_CONFIG.getString("materials." + name().toLowerCase(), "STAINED_CLAY"));
|
Material material = MultiversionMaterials.fromString(RELATION_CONFIG.getString("materials." + name().toLowerCase(), "STAINED_CLAY")).parseMaterial();
|
||||||
if (material == null) {
|
if (material == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user