This is 2.8.14
This commit is contained in:
parent
ac925fca3d
commit
0c625a1ff4
@ -1,6 +1,6 @@
|
|||||||
main: com.massivecraft.massivecore.MassiveCore
|
main: com.massivecraft.massivecore.MassiveCore
|
||||||
name: MassiveCore
|
name: MassiveCore
|
||||||
version: 2.8.13
|
version: 2.8.14
|
||||||
website: https://www.massivecraft.com/massivecore
|
website: https://www.massivecraft.com/massivecore
|
||||||
authors: [Cayorion]
|
authors: [Cayorion]
|
||||||
description: §eMassiveCore is a plugin that contains libraries and features that other plugins make use of. §aCayorion §efrom the minecraft server §aMassiveCraft §eis the lead programmer. Feel free to visit us at §bhttps://www.massivecraft.com
|
description: §eMassiveCore is a plugin that contains libraries and features that other plugins make use of. §aCayorion §efrom the minecraft server §aMassiveCraft §eis the lead programmer. Feel free to visit us at §bhttps://www.massivecraft.com
|
||||||
|
@ -14,12 +14,14 @@ public class PredicateElementGarbage extends PredicateElementRegexes
|
|||||||
{
|
{
|
||||||
super(
|
super(
|
||||||
"^" + Pattern.quote("com.massivecraft.massivelag.inject") + ".*$", // MassiveLag - Injected stuff for commands, tasks and events.
|
"^" + Pattern.quote("com.massivecraft.massivelag.inject") + ".*$", // MassiveLag - Injected stuff for commands, tasks and events.
|
||||||
|
// TODO: Missing PerWorldPlugins equivalents?
|
||||||
|
|
||||||
"^" + Pattern.quote("com.massivecraft.massivecore.command.MassiveCoreBukkitCommand.execute") + ".*$", // MassiveCommand - Execution Garbage
|
"^" + Pattern.quote("com.massivecraft.massivecore.command.MassiveCoreBukkitCommand.execute") + ".*$", // MassiveCommand - Execution Garbage
|
||||||
"^" + Pattern.quote("com.massivecraft.massivecore.command.MassiveCommand.execute") + ".*$", // MassiveCommand - Execution Garbage
|
"^" + Pattern.quote("com.massivecraft.massivecore.command.MassiveCommand.execute") + ".*$", // MassiveCommand - Execution Garbage
|
||||||
|
|
||||||
"^" + Pattern.quote("com.sk89q.bukkit.util.DynamicPluginCommand.execute") + ".*$", // SK89Q
|
"^" + Pattern.quote("com.sk89q.bukkit.util.DynamicPluginCommand.execute") + ".*$", // SK89Q
|
||||||
"^" + Pattern.quote("com.sk89q.worldguard.bukkit.WorldGuardPlugin.onCommand") + ".*$", // SK89Q
|
"^" + Pattern.quote("com.sk89q.worldguard.bukkit.WorldGuardPlugin.onCommand") + ".*$", // SK89Q
|
||||||
|
// TODO: Missing WorldEdit equivalents
|
||||||
"^" + Pattern.quote("com.sk89q.minecraft.util.commands.CommandsManager") + ".*$", // SK89Q
|
"^" + Pattern.quote("com.sk89q.minecraft.util.commands.CommandsManager") + ".*$", // SK89Q
|
||||||
|
|
||||||
"^" + Pattern.quote("sun.reflect") + ".*$", // Event Reflection
|
"^" + Pattern.quote("sun.reflect") + ".*$", // Event Reflection
|
||||||
|
@ -72,11 +72,11 @@ public class BoardUtil extends Engine
|
|||||||
// -------------------------------------------- //
|
// -------------------------------------------- //
|
||||||
|
|
||||||
// All online players at the beginning of the tick.
|
// All online players at the beginning of the tick.
|
||||||
private static Map<String, Player> players;
|
private static Map<String, Player> players = Collections.emptyMap();
|
||||||
public static Map<String, Player> getPlayers() { return players; }
|
public static Map<String, Player> getPlayers() { return players; }
|
||||||
|
|
||||||
// The boards based off the players above.
|
// The boards based off the players above.
|
||||||
private static Set<Scoreboard> boards;
|
private static Set<Scoreboard> boards = Collections.emptySet();
|
||||||
public static Set<Scoreboard> getBoards() { return boards; }
|
public static Set<Scoreboard> getBoards() { return boards; }
|
||||||
|
|
||||||
// Ensure things, possibly strictly.
|
// Ensure things, possibly strictly.
|
||||||
|
Loading…
Reference in New Issue
Block a user