Multiple NullPointer Fixes With Container Permissions and Chat Fixed
This commit is contained in:
parent
eee6a014e2
commit
8af272cfdf
@ -181,7 +181,7 @@ public class FactionsChatListener implements Listener {
|
|||||||
if (Conf.chatTagRelationColored) {
|
if (Conf.chatTagRelationColored) {
|
||||||
// Messages are sent to players individually
|
// Messages are sent to players individually
|
||||||
// This still leaves a chance for other plugins to pick it up
|
// This still leaves a chance for other plugins to pick it up
|
||||||
event.getRecipients().clear();
|
event.setCancelled(true);
|
||||||
|
|
||||||
for (Player listeningPlayer : event.getRecipients()) {
|
for (Player listeningPlayer : event.getRecipients()) {
|
||||||
FPlayer you = FPlayers.getInstance().getByPlayer(listeningPlayer);
|
FPlayer you = FPlayers.getInstance().getByPlayer(listeningPlayer);
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
package com.massivecraft.factions.listeners;
|
package com.massivecraft.factions.listeners;
|
||||||
|
|
||||||
|
|
||||||
import com.massivecraft.factions.*;
|
import com.massivecraft.factions.*;
|
||||||
import com.massivecraft.factions.cmd.CmdFly;
|
import com.massivecraft.factions.cmd.CmdFly;
|
||||||
import com.massivecraft.factions.cmd.CmdSeeChunk;
|
import com.massivecraft.factions.cmd.CmdSeeChunk;
|
||||||
@ -163,7 +162,6 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public static boolean canPlayerUseBlock(Player player, Block block, boolean justCheck) {
|
public static boolean canPlayerUseBlock(Player player, Block block, boolean justCheck) {
|
||||||
if (Conf.playersWhoBypassAllProtection.contains(player.getName())) {
|
if (Conf.playersWhoBypassAllProtection.contains(player.getName())) {
|
||||||
return true;
|
return true;
|
||||||
@ -181,6 +179,7 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
Faction myFaction = me.getFaction();
|
Faction myFaction = me.getFaction();
|
||||||
Relation rel = myFaction.getRelationTo(otherFaction);
|
Relation rel = myFaction.getRelationTo(otherFaction);
|
||||||
|
|
||||||
|
|
||||||
// no door/chest/whatever protection in wilderness, war zones, or safe zones
|
// no door/chest/whatever protection in wilderness, war zones, or safe zones
|
||||||
if (!otherFaction.isNormal()) {
|
if (!otherFaction.isNormal()) {
|
||||||
return true;
|
return true;
|
||||||
@ -237,6 +236,14 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
case CHEST:
|
case CHEST:
|
||||||
case ENDER_CHEST:
|
case ENDER_CHEST:
|
||||||
case TRAPPED_CHEST:
|
case TRAPPED_CHEST:
|
||||||
|
case DISPENSER:
|
||||||
|
case ENCHANTING_TABLE:
|
||||||
|
case DROPPER:
|
||||||
|
case FURNACE:
|
||||||
|
case HOPPER:
|
||||||
|
case ANVIL:
|
||||||
|
case CHIPPED_ANVIL:
|
||||||
|
case DAMAGED_ANVIL:
|
||||||
action = PermissableAction.CONTAINER;
|
action = PermissableAction.CONTAINER;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -271,6 +278,14 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
case CHEST:
|
case CHEST:
|
||||||
case ENDER_CHEST:
|
case ENDER_CHEST:
|
||||||
case TRAPPED_CHEST:
|
case TRAPPED_CHEST:
|
||||||
|
case DISPENSER:
|
||||||
|
case ENCHANTING_TABLE:
|
||||||
|
case DROPPER:
|
||||||
|
case FURNACE:
|
||||||
|
case HOPPER:
|
||||||
|
case ANVIL:
|
||||||
|
case CHIPPED_ANVIL:
|
||||||
|
case DAMAGED_ANVIL:
|
||||||
action = PermissableAction.CONTAINER;
|
action = PermissableAction.CONTAINER;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@ -915,13 +930,13 @@ public class FactionsPlayerListener implements Listener {
|
|||||||
|
|
||||||
// returns the current attempt count
|
// returns the current attempt count
|
||||||
public int increment() {
|
public int increment() {
|
||||||
long now = System.currentTimeMillis();
|
long Now = System.currentTimeMillis();
|
||||||
if (now > lastAttempt + 2000) {
|
if (Now > lastAttempt + 2000) {
|
||||||
attempts = 1;
|
attempts = 1;
|
||||||
} else {
|
} else {
|
||||||
attempts++;
|
attempts++;
|
||||||
}
|
}
|
||||||
lastAttempt = now;
|
lastAttempt = Now;
|
||||||
return attempts;
|
return attempts;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -262,7 +262,7 @@ public enum MultiversionMaterials {
|
|||||||
EMERALD_ORE("EMERALD_ORE", 0),
|
EMERALD_ORE("EMERALD_ORE", 0),
|
||||||
ENCHANTED_BOOK("ENCHANTED_BOOK", 0),
|
ENCHANTED_BOOK("ENCHANTED_BOOK", 0),
|
||||||
ENCHANTED_GOLDEN_APPLE("GOLDEN_APPLE", 1),
|
ENCHANTED_GOLDEN_APPLE("GOLDEN_APPLE", 1),
|
||||||
ENCHANTING_TABLE("ENCHANTMENT_TABLE", 0),
|
ENCHANTING_TABLE("ENCHANTING_TABLE", 0),
|
||||||
ENDERMAN_SPAWN_EGG("MONSTER_EGG", 0),
|
ENDERMAN_SPAWN_EGG("MONSTER_EGG", 0),
|
||||||
ENDERMITE_SPAWN_EGG("MONSTER_EGG", 0),
|
ENDERMITE_SPAWN_EGG("MONSTER_EGG", 0),
|
||||||
ENDER_CHEST("ENDER_CHEST", 0),
|
ENDER_CHEST("ENDER_CHEST", 0),
|
||||||
|
@ -114,20 +114,20 @@ tooltips:
|
|||||||
# Use &0-9a-f for colors and include messages in "quotes"
|
# Use &0-9a-f for colors and include messages in "quotes"
|
||||||
scoreboard:
|
scoreboard:
|
||||||
|
|
||||||
# send faction change message as well when scoreboard is up?
|
# send faction change message as well when scoreboard is up?
|
||||||
also-send-chat: true
|
also-send-chat: true
|
||||||
# How long do we want scoreboards to stay if set temporarily.
|
# How long do we want scoreboards to stay if set temporarily.
|
||||||
expiration: 7
|
expiration: 7
|
||||||
|
|
||||||
# FInfo scoreboard is displayed when a player walks into a new Faction's territory.
|
# FInfo scoreboard is displayed when a player walks into a new Faction's territory.
|
||||||
# Scoreboard disappears after <expiration> seconds.
|
# Scoreboard disappears after <expiration> seconds.
|
||||||
# Things to be replaced in this:
|
# Things to be replaced in this:
|
||||||
# {power} - faction's power. {chunks} - total claimed chunks. {members} - total members.
|
# {power} - faction's power. {chunks} - total claimed chunks. {members} - total members.
|
||||||
# {online} - online members. {leader} - faction's leader. {open} - shows either true or false if open.
|
# {online} - online members. {leader} - faction's leader. {open} - shows either true or false if open.
|
||||||
# {raidable} - true if the faction can be claimed over, otherwise false.
|
# {raidable} - true if the faction can be claimed over, otherwise false.
|
||||||
# {warps} - the number of warps that a faction has set.
|
# {warps} - the number of warps that a faction has set.
|
||||||
# The title of the scoreboard will be the Faction's tag and colored according to the relation with the player's Faction.
|
# The title of the scoreboard will be the Faction's tag and colored according to the relation with the player's Faction.
|
||||||
# Commenting this section out will cause the info to appear in chat as the plugin originally did.
|
# Commenting this section out will cause the info to appear in chat as the plugin originally did.
|
||||||
finfo-enabled: false
|
finfo-enabled: false
|
||||||
|
|
||||||
# SUPPORTS PLACEHOLDERS
|
# SUPPORTS PLACEHOLDERS
|
||||||
@ -141,12 +141,12 @@ scoreboard:
|
|||||||
- "&bTerritory"
|
- "&bTerritory"
|
||||||
- "{chunks}"
|
- "{chunks}"
|
||||||
|
|
||||||
# Default board that will always show up if a player wants it to.
|
# Default board that will always show up if a player wants it to.
|
||||||
# This can show any arbitrary text or you can use a lot of variables to replace things.
|
# This can show any arbitrary text or you can use a lot of variables to replace things.
|
||||||
# Replace {name} - player's name. {faction} - player's faction title, factionless if none.
|
# Replace {name} - player's name. {faction} - player's faction title, factionless if none.
|
||||||
# {totalOnline} - total players on the server. {balance} - player's balance.
|
# {totalOnline} - total players on the server. {balance} - player's balance.
|
||||||
# {maxPower} - player's max power.
|
# {maxPower} - player's max power.
|
||||||
# {powerBoost} - player's powerboost.
|
# {powerBoost} - player's powerboost.
|
||||||
|
|
||||||
default-enabled: false # Default to false to keep original functionality.
|
default-enabled: false # Default to false to keep original functionality.
|
||||||
default-title: "&cSavageFactions" # Can use any of the values from above but this won't update once it's set (so don't set {balance}).
|
default-title: "&cSavageFactions" # Can use any of the values from above but this won't update once it's set (so don't set {balance}).
|
||||||
@ -156,7 +156,7 @@ scoreboard:
|
|||||||
# The scoreboard needs to be enabled for this to work.
|
# The scoreboard needs to be enabled for this to work.
|
||||||
default-prefixes: true
|
default-prefixes: true
|
||||||
|
|
||||||
# SUPPORTS PLACEHOLDERS
|
# SUPPORTS PLACEHOLDERS
|
||||||
|
|
||||||
default:
|
default:
|
||||||
- "&7&m--------------------------"
|
- "&7&m--------------------------"
|
||||||
@ -276,25 +276,25 @@ hcf:
|
|||||||
# SUPPORTS PLACEHOLDERS
|
# SUPPORTS PLACEHOLDERS
|
||||||
show:
|
show:
|
||||||
# First line can be {header} for default header, or any string (we recommend &m for smooth lines ;plugin)
|
# First line can be {header} for default header, or any string (we recommend &m for smooth lines ;plugin)
|
||||||
- '&8&m--------------&7 &8<&e{faction}&8> &8&m--------------'
|
- '&8&m--------------&7 &8<&e{faction}&8> &8&m--------------'
|
||||||
- '&6 * &eOwner &7{leader}'
|
- '&6 * &eOwner &7{leader}'
|
||||||
- '&6 * &eDescription &7{description}'
|
- '&6 * &eDescription &7{description}'
|
||||||
- '&6 * &eLand / Power / Max Power: &7{chunks} &8/ &7{power} &8/ &7{maxPower}'
|
- '&6 * &eLand / Power / Max Power: &7{chunks} &8/ &7{power} &8/ &7{maxPower}'
|
||||||
- '&6 * &eFounded &7{create-date}'
|
- '&6 * &eFounded &7{create-date}'
|
||||||
- '&6 * &eBalance &f{faction-balance}'
|
- '&6 * &eBalance &f{faction-balance}'
|
||||||
- '&6 * &eAllies &c{allies-list}'
|
- '&6 * &eAllies &c{allies-list}'
|
||||||
- '&6 * &eEnemies &c{enemies-list}'
|
- '&6 * &eEnemies &c{enemies-list}'
|
||||||
- '&6 * &eOnline Members &8(&7{online}/{members}&8) &7{online-list}'
|
- '&6 * &eOnline Members &8(&7{online}/{members}&8) &7{online-list}'
|
||||||
- '&6 * &eOffline Members &8(&7{offline}/{members}&8) &7{offline-list}'
|
- '&6 * &eOffline Members &8(&7{offline}/{members}&8) &7{offline-list}'
|
||||||
- '&6 * &eBans &7{faction-bancount}'
|
- '&6 * &eBans &7{faction-bancount}'
|
||||||
- '&8&m----------------------------------------'
|
- '&8&m----------------------------------------'
|
||||||
# For a /f show that does not display fancy messages that are essentially empty, use minimal-show
|
# For a /f show that does not display fancy messages that are essentially empty, use minimal-show
|
||||||
minimal-show: false
|
minimal-show: false
|
||||||
|
|
||||||
# Factions that should be exempt from /f show, case sensitive, useful for a
|
# Factions that should be exempt from /f show, case sensitive, useful for a
|
||||||
# serverteam faction, since the command shows vanished players otherwise
|
# serverteam faction, since the command shows vanished players otherwise
|
||||||
show-exempt:
|
show-exempt:
|
||||||
- Wilderness
|
- Wilderness
|
||||||
|
|
||||||
|
|
||||||
# THIS IS FOR /f map tool tips.
|
# THIS IS FOR /f map tool tips.
|
||||||
@ -303,13 +303,13 @@ show-exempt:
|
|||||||
# Lines that arent defined wont be sent (home not set, faction not peaceful / permanent, dtr freeze)
|
# Lines that arent defined wont be sent (home not set, faction not peaceful / permanent, dtr freeze)
|
||||||
map:
|
map:
|
||||||
# First line can be {header} for default header, or any string (we recommend &m for smooth lines ;plugin)
|
# First line can be {header} for default header, or any string (we recommend &m for smooth lines ;plugin)
|
||||||
- '&6* &eFaction &7{faction}'
|
- '&6* &eFaction &7{faction}'
|
||||||
- '&6* &eOwner &7{leader}'
|
- '&6* &eOwner &7{leader}'
|
||||||
- '&6* &eLand / Power / Max Power: &7{chunks} &8/ &7{power} &8/ &7{maxPower}'
|
- '&6* &eLand / Power / Max Power: &7{chunks} &8/ &7{power} &8/ &7{maxPower}'
|
||||||
- '&6* &eAllies &c{allies-list}'
|
- '&6* &eAllies &c{allies-list}'
|
||||||
- '&6* &eEnemies &c{enemies-list}'
|
- '&6* &eEnemies &c{enemies-list}'
|
||||||
- '&6* &eOnline Members &8(&7{online}/{members}&8) {online-list}'
|
- '&6* &eOnline Members &8(&7{online}/{members}&8) {online-list}'
|
||||||
- '&6* &eOffline Members &7{offline-list}'
|
- '&6* &eOffline Members &7{offline-list}'
|
||||||
|
|
||||||
############################################################
|
############################################################
|
||||||
# +------------------------------------------------------+ #
|
# +------------------------------------------------------+ #
|
||||||
@ -351,7 +351,7 @@ help:
|
|||||||
- '&e/f top &8- &7View the richest factions.'
|
- '&e/f top &8- &7View the richest factions.'
|
||||||
- '&e/f map &8- &7Map of the surrounding area, click chunks to claim.'
|
- '&e/f map &8- &7Map of the surrounding area, click chunks to claim.'
|
||||||
- '&e/f sethome &8- &7Set your faction home.'
|
- '&e/f sethome &8- &7Set your faction home.'
|
||||||
- '&e/f home &8- &7Set your faction home.'
|
- '&e/f home &8- &7Go to your faction home.'
|
||||||
- '&e/f title &f<playername> <title> &8- &7Set a player''s title, color codes supported.'
|
- '&e/f title &f<playername> <title> &8- &7Set a player''s title, color codes supported.'
|
||||||
- '&e/f ban &8- &7Ban a member from your faction.'
|
- '&e/f ban &8- &7Ban a member from your faction.'
|
||||||
- '&e/f unban &8- &7Unban a member from your faction.'
|
- '&e/f unban &8- &7Unban a member from your faction.'
|
||||||
@ -630,11 +630,11 @@ fperm-gui:
|
|||||||
name: ' '
|
name: ' '
|
||||||
lore:
|
lore:
|
||||||
-
|
-
|
||||||
############################################################
|
############################################################
|
||||||
# +------------------------------------------------------+ #
|
# +------------------------------------------------------+ #
|
||||||
# | Faction Warp GUI | #
|
# | Faction Warp GUI | #
|
||||||
# +------------------------------------------------------+ #
|
# +------------------------------------------------------+ #
|
||||||
############################################################
|
############################################################
|
||||||
|
|
||||||
fwarp-gui:
|
fwarp-gui:
|
||||||
name: "Faction Warps"
|
name: "Faction Warps"
|
||||||
@ -692,11 +692,11 @@ fwarp-gui:
|
|||||||
name: ' '
|
name: ' '
|
||||||
lore:
|
lore:
|
||||||
-
|
-
|
||||||
############################################################
|
############################################################
|
||||||
# +------------------------------------------------------+ #
|
# +------------------------------------------------------+ #
|
||||||
# | Faction Rules | #
|
# | Faction Rules | #
|
||||||
# +------------------------------------------------------+ #
|
# +------------------------------------------------------+ #
|
||||||
############################################################
|
############################################################
|
||||||
frules:
|
frules:
|
||||||
Enabled: true
|
Enabled: true
|
||||||
default-rules:
|
default-rules:
|
||||||
|
Loading…
Reference in New Issue
Block a user