From eba6043d26950c33132857e7149e77aeed93f032 Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Mon, 21 Dec 2020 15:59:12 +0100 Subject: [PATCH 01/16] Update paster --- Bukkit/build.gradle | 2 +- Core/build.gradle | 4 ++-- Core/pom.xml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Bukkit/build.gradle b/Bukkit/build.gradle index c5336198f..3e4c3578f 100644 --- a/Bukkit/build.gradle +++ b/Bukkit/build.gradle @@ -99,7 +99,7 @@ shadowJar { include(dependency("org.bstats:bstats-bukkit:1.7")) include(dependency("org.khelekore:prtree:1.7.0-SNAPSHOT")) include(dependency("com.sk89q:squirrelid:1.0.0-SNAPSHOT")) - include(dependency("com.intellectualsites.paster:Paster:1.0-SNAPSHOT")) + include(dependency("com.intellectualsites.paster:Paster:1.0.1-SNAPSHOT")) } relocate('net.kyori.text', 'com.plotsquared.formatting.text') relocate("io.papermc.lib", "com.plotsquared.bukkit.paperlib") diff --git a/Core/build.gradle b/Core/build.gradle index 4eab46f28..eeb918012 100644 --- a/Core/build.gradle +++ b/Core/build.gradle @@ -18,7 +18,7 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-stdlib:1.4.0") implementation("org.jetbrains:annotations:20.1.0") implementation("org.khelekore:prtree:1.7.0-SNAPSHOT") - implementation("com.intellectualsites.paster:Paster:1.0-SNAPSHOT"){ transitive = false } + implementation("com.intellectualsites.paster:Paster:1.0.1-SNAPSHOT"){ transitive = false } } sourceCompatibility = 1.8 @@ -77,7 +77,7 @@ shadowJar { include(dependency("net.kyori:text-serializer-legacy:3.0.2")) include(dependency("net.kyori:text-serializer-plain:3.0.2")) include(dependency("org.khelekore:prtree:1.7.0-SNAPSHOT")) - include(dependency("com.intellectualsites.paster:Paster:1.0-SNAPSHOT")) + include(dependency("com.intellectualsites.paster:Paster:1.0.1-SNAPSHOT")) } relocate('net.kyori.text', 'com.plotsquared.formatting.text') relocate("org.json", "com.plotsquared.json") { diff --git a/Core/pom.xml b/Core/pom.xml index 2669af8c1..01259caf8 100644 --- a/Core/pom.xml +++ b/Core/pom.xml @@ -101,7 +101,7 @@ com.intellectualsites.paster Paster - 1.0-SNAPSHOT + 1.0.1-SNAPSHOT runtime From 1d4fe01db0bee8a99eec8b324e88d82e2da4cbf0 Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Tue, 22 Dec 2020 20:54:22 +0100 Subject: [PATCH 02/16] Rename database chart id --- Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java index e5b98f9d8..8d6723659 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java @@ -1022,7 +1022,7 @@ public final class BukkitMain extends JavaPlugin implements Listener, IPlotMain< metrics.addCustomChart(new Metrics.SimplePie("worlds", () -> Settings.Enabled_Components.WORLDS ? "true" : "false")); metrics.addCustomChart(new Metrics.SimplePie("economy", () -> Settings.Enabled_Components.ECONOMY ? "true" : "false")); metrics.addCustomChart(new Metrics.SimplePie("plot_expiry", () -> Settings.Enabled_Components.PLOT_EXPIRY ? "true" : "false")); - metrics.addCustomChart(new Metrics.SimplePie("mysql", () -> Storage.MySQL.USE ? "true" : "false")); + metrics.addCustomChart(new Metrics.SimplePie("database_type", () -> Storage.MySQL.USE ? "MySQL" : "SQLite")); metrics.addCustomChart(new Metrics.SimplePie("worldedit_implementation", () -> Bukkit.getPluginManager().getPlugin("FastAsyncWorldEdit") != null ? "FastAsyncWorldEdit" : From 67a7211b77347295b5086bdbde2587b9b0bb502f Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Wed, 23 Dec 2020 13:52:47 +0000 Subject: [PATCH 03/16] use correct UUID pipeline methods in purge command --- .../main/java/com/plotsquared/core/command/Purge.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/Purge.java b/Core/src/main/java/com/plotsquared/core/command/Purge.java index 9a89b2230..d7a7ede26 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Purge.java +++ b/Core/src/main/java/com/plotsquared/core/command/Purge.java @@ -36,6 +36,7 @@ import com.plotsquared.core.plot.PlotArea; import com.plotsquared.core.plot.PlotId; import com.plotsquared.core.util.StringMan; import com.plotsquared.core.util.task.TaskManager; +import com.plotsquared.core.uuid.UUIDMapping; import java.util.HashMap; import java.util.HashSet; @@ -95,19 +96,21 @@ public class Purge extends SubCommand { break; case "owner": case "o": - owner = PlotSquared.get().getImpromptuUUIDPipeline().getSingle(split[1], Settings.UUID.BLOCKING_TIMEOUT); - if (owner == null) { + UUIDMapping ownerMapping = PlotSquared.get().getImpromptuUUIDPipeline().getImmediately(split[1]); + if (ownerMapping == null) { Captions.INVALID_PLAYER.send(player, split[1]); return false; } + owner = ownerMapping.getUuid(); break; case "shared": case "s": - added = PlotSquared.get().getImpromptuUUIDPipeline().getSingle(split[1], Settings.UUID.BLOCKING_TIMEOUT); - if (added == null) { + UUIDMapping addedMapping = PlotSquared.get().getImpromptuUUIDPipeline().getImmediately(split[1]); + if (addedMapping == null) { Captions.INVALID_PLAYER.send(player, split[1]); return false; } + added = addedMapping.getUuid(); break; case "clear": case "c": From 2b9a1942446027de0168a1fe8634b281ad498098 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Wed, 23 Dec 2020 14:07:42 +0000 Subject: [PATCH 04/16] 5.13.10 --- Bukkit/pom.xml | 2 +- build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Bukkit/pom.xml b/Bukkit/pom.xml index 7918a3e5a..6da68caa9 100644 --- a/Bukkit/pom.xml +++ b/Bukkit/pom.xml @@ -21,7 +21,7 @@ com.plotsquared PlotSquared-Core - 5.13.9 + 5.13.10 compile diff --git a/build.gradle b/build.gradle index c9ad00319..da1d63300 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext { git = Grgit.open(dir: new File(rootDir.toString() + "/.git")) } -def ver = "5.13.9" +def ver = "5.13.10" def versuffix = "" ext { if (project.hasProperty("versionsuffix")) { From ef215b1b0c72aa49cac3ac3e1d1a32e2e29219b1 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Mon, 28 Dec 2020 12:31:51 +0000 Subject: [PATCH 05/16] fix debugpaste with multiverse --- Bukkit/build.gradle | 2 +- Core/build.gradle | 4 ++-- Core/pom.xml | 2 +- .../main/java/com/plotsquared/core/command/DebugPaste.java | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Bukkit/build.gradle b/Bukkit/build.gradle index 3e4c3578f..8ce94360a 100644 --- a/Bukkit/build.gradle +++ b/Bukkit/build.gradle @@ -99,7 +99,7 @@ shadowJar { include(dependency("org.bstats:bstats-bukkit:1.7")) include(dependency("org.khelekore:prtree:1.7.0-SNAPSHOT")) include(dependency("com.sk89q:squirrelid:1.0.0-SNAPSHOT")) - include(dependency("com.intellectualsites.paster:Paster:1.0.1-SNAPSHOT")) + include(dependency("com.intellectualsites.paster:Paster:1.0.2-SNAPSHOT")) } relocate('net.kyori.text', 'com.plotsquared.formatting.text') relocate("io.papermc.lib", "com.plotsquared.bukkit.paperlib") diff --git a/Core/build.gradle b/Core/build.gradle index eeb918012..4fba36ec6 100644 --- a/Core/build.gradle +++ b/Core/build.gradle @@ -18,7 +18,7 @@ dependencies { implementation("org.jetbrains.kotlin:kotlin-stdlib:1.4.0") implementation("org.jetbrains:annotations:20.1.0") implementation("org.khelekore:prtree:1.7.0-SNAPSHOT") - implementation("com.intellectualsites.paster:Paster:1.0.1-SNAPSHOT"){ transitive = false } + implementation("com.intellectualsites.paster:Paster:1.0.2-SNAPSHOT"){ transitive = false } } sourceCompatibility = 1.8 @@ -77,7 +77,7 @@ shadowJar { include(dependency("net.kyori:text-serializer-legacy:3.0.2")) include(dependency("net.kyori:text-serializer-plain:3.0.2")) include(dependency("org.khelekore:prtree:1.7.0-SNAPSHOT")) - include(dependency("com.intellectualsites.paster:Paster:1.0.1-SNAPSHOT")) + include(dependency("com.intellectualsites.paster:Paster:1.0.2-SNAPSHOT")) } relocate('net.kyori.text', 'com.plotsquared.formatting.text') relocate("org.json", "com.plotsquared.json") { diff --git a/Core/pom.xml b/Core/pom.xml index 01259caf8..94bbca45b 100644 --- a/Core/pom.xml +++ b/Core/pom.xml @@ -101,7 +101,7 @@ com.intellectualsites.paster Paster - 1.0.1-SNAPSHOT + 1.0.2-SNAPSHOT runtime diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java b/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java index eb6062e4d..ec94095db 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java @@ -141,7 +141,7 @@ public class DebugPaste extends SubCommand { try { final File MultiverseWorlds = new File(PlotSquared.get().IMP.getDirectory(), "../Multiverse-Core/worlds.yml"); - incendoPaster.addFile(MultiverseWorlds); + incendoPaster.addFile(MultiverseWorlds, "Multiverse-Core/worlds.yml"); } catch (final IOException ignored) { MainUtil.sendMessage(player, "&cSkipping Multiverse worlds.yml because the plugin is not in use"); From b6487170795011f7b7ed66f001ca041672bdd1f5 Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Tue, 29 Dec 2020 15:14:00 +0100 Subject: [PATCH 06/16] 5.13.11 --- Bukkit/pom.xml | 2 +- build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Bukkit/pom.xml b/Bukkit/pom.xml index 6da68caa9..461b3748d 100644 --- a/Bukkit/pom.xml +++ b/Bukkit/pom.xml @@ -21,7 +21,7 @@ com.plotsquared PlotSquared-Core - 5.13.10 + 5.13.11 compile diff --git a/build.gradle b/build.gradle index da1d63300..9eb92bd6d 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext { git = Grgit.open(dir: new File(rootDir.toString() + "/.git")) } -def ver = "5.13.10" +def ver = "5.13.11" def versuffix = "" ext { if (project.hasProperty("versionsuffix")) { From bf79639d07c397ab232cda1ba49bf3754bc79114 Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Fri, 1 Jan 2021 00:46:30 +0100 Subject: [PATCH 07/16] Update license to 2021 Happy new year :fireworks: --- .../src/main/java/com/plotsquared/bukkit/BukkitCommand.java | 2 +- Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java | 2 +- .../main/java/com/plotsquared/bukkit/chat/ArrayWrapper.java | 2 +- .../main/java/com/plotsquared/bukkit/chat/FancyMessage.java | 2 +- .../com/plotsquared/bukkit/chat/JsonRepresentedObject.java | 2 +- .../src/main/java/com/plotsquared/bukkit/chat/JsonString.java | 2 +- .../main/java/com/plotsquared/bukkit/chat/MessagePart.java | 2 +- .../src/main/java/com/plotsquared/bukkit/chat/Reflection.java | 2 +- .../java/com/plotsquared/bukkit/chat/TextualComponent.java | 2 +- .../main/java/com/plotsquared/bukkit/entity/AgeableStats.java | 2 +- .../java/com/plotsquared/bukkit/entity/ArmorStandStats.java | 2 +- .../java/com/plotsquared/bukkit/entity/EntityBaseStats.java | 2 +- .../java/com/plotsquared/bukkit/entity/EntityWrapper.java | 2 +- .../main/java/com/plotsquared/bukkit/entity/HorseStats.java | 2 +- .../java/com/plotsquared/bukkit/entity/LivingEntityStats.java | 2 +- .../plotsquared/bukkit/entity/ReplicatingEntityWrapper.java | 2 +- .../java/com/plotsquared/bukkit/entity/TameableStats.java | 2 +- .../com/plotsquared/bukkit/entity/TeleportEntityWrapper.java | 2 +- .../com/plotsquared/bukkit/generator/BlockStatePopulator.java | 2 +- .../bukkit/generator/BukkitAugmentedGenerator.java | 2 +- .../com/plotsquared/bukkit/generator/BukkitHybridUtils.java | 2 +- .../com/plotsquared/bukkit/generator/BukkitPlotGenerator.java | 2 +- .../plotsquared/bukkit/generator/DelegatePlotGenerator.java | 2 +- .../com/plotsquared/bukkit/listener/BlockEventListener.java | 2 +- .../java/com/plotsquared/bukkit/listener/ChunkListener.java | 2 +- .../com/plotsquared/bukkit/listener/EntityEventListener.java | 2 +- .../com/plotsquared/bukkit/listener/EntitySpawnListener.java | 2 +- .../com/plotsquared/bukkit/listener/ForceFieldListener.java | 2 +- .../java/com/plotsquared/bukkit/listener/PaperListener.java | 2 +- .../com/plotsquared/bukkit/listener/PaperListener113.java | 2 +- .../com/plotsquared/bukkit/listener/PlayerEventListener.java | 2 +- .../plotsquared/bukkit/listener/ProjectileEventListener.java | 2 +- .../java/com/plotsquared/bukkit/listener/ServerListener.java | 2 +- .../com/plotsquared/bukkit/listener/SingleWorldListener.java | 2 +- .../java/com/plotsquared/bukkit/listener/WorldEvents.java | 2 +- .../com/plotsquared/bukkit/managers/BukkitWorldManager.java | 2 +- .../plotsquared/bukkit/managers/HyperverseWorldManager.java | 2 +- .../plotsquared/bukkit/managers/MultiverseWorldManager.java | 2 +- .../com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java | 2 +- .../com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java | 2 +- .../plotsquared/bukkit/placeholder/PlaceholderFormatter.java | 2 +- .../com/plotsquared/bukkit/player/BukkitOfflinePlayer.java | 2 +- .../main/java/com/plotsquared/bukkit/player/BukkitPlayer.java | 4 ++-- .../com/plotsquared/bukkit/player/BukkitPlayerManager.java | 2 +- .../java/com/plotsquared/bukkit/queue/BukkitLocalQueue.java | 2 +- .../java/com/plotsquared/bukkit/queue/ChunkCoordinator.java | 2 +- .../src/main/java/com/plotsquared/bukkit/queue/GenChunk.java | 2 +- .../plotsquared/bukkit/schematic/BukkitSchematicHandler.java | 2 +- .../java/com/plotsquared/bukkit/schematic/StateWrapper.java | 2 +- .../java/com/plotsquared/bukkit/util/BukkitBlockUtil.java | 2 +- .../java/com/plotsquared/bukkit/util/BukkitChatManager.java | 2 +- .../java/com/plotsquared/bukkit/util/BukkitChunkManager.java | 2 +- .../java/com/plotsquared/bukkit/util/BukkitEconHandler.java | 2 +- .../java/com/plotsquared/bukkit/util/BukkitEntityUtil.java | 2 +- .../java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java | 2 +- .../java/com/plotsquared/bukkit/util/BukkitPermHandler.java | 2 +- .../java/com/plotsquared/bukkit/util/BukkitRegionManager.java | 2 +- .../java/com/plotsquared/bukkit/util/BukkitSetupUtils.java | 2 +- .../java/com/plotsquared/bukkit/util/BukkitTaskManager.java | 2 +- .../src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java | 2 +- .../src/main/java/com/plotsquared/bukkit/util/ContentMap.java | 2 +- .../java/com/plotsquared/bukkit/util/OfflinePlayerUtil.java | 2 +- .../src/main/java/com/plotsquared/bukkit/util/SetGenCB.java | 2 +- .../main/java/com/plotsquared/bukkit/util/UpdateUtility.java | 2 +- .../com/plotsquared/bukkit/uuid/EssentialsUUIDService.java | 2 +- .../com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java | 2 +- .../com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java | 2 +- .../java/com/plotsquared/bukkit/uuid/PaperUUIDService.java | 2 +- .../java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java | 2 +- .../com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java | 2 +- Core/src/main/java/com/plotsquared/core/IPlotMain.java | 2 +- Core/src/main/java/com/plotsquared/core/Platform.java | 2 +- Core/src/main/java/com/plotsquared/core/PlotSquared.java | 2 +- Core/src/main/java/com/plotsquared/core/PlotVersion.java | 2 +- Core/src/main/java/com/plotsquared/core/api/PlotAPI.java | 2 +- Core/src/main/java/com/plotsquared/core/backup/Backup.java | 2 +- .../main/java/com/plotsquared/core/backup/BackupManager.java | 2 +- .../main/java/com/plotsquared/core/backup/BackupProfile.java | 2 +- .../java/com/plotsquared/core/backup/NullBackupManager.java | 2 +- .../java/com/plotsquared/core/backup/NullBackupProfile.java | 2 +- .../java/com/plotsquared/core/backup/PlayerBackupProfile.java | 2 +- .../java/com/plotsquared/core/backup/SimpleBackupManager.java | 2 +- .../main/java/com/plotsquared/core/collection/ArrayUtil.java | 2 +- .../com/plotsquared/core/collection/ByteArrayUtilities.java | 2 +- .../com/plotsquared/core/collection/FlatRandomCollection.java | 2 +- .../main/java/com/plotsquared/core/collection/QuadMap.java | 2 +- .../com/plotsquared/core/collection/RandomCollection.java | 2 +- .../plotsquared/core/collection/SimpleRandomCollection.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Add.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Alias.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Area.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Argument.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Auto.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Backup.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Biome.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Buy.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Caps.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Chat.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Claim.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Clear.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Cluster.java | 2 +- .../main/java/com/plotsquared/core/command/CmdConfirm.java | 2 +- .../main/java/com/plotsquared/core/command/CmdInstance.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Command.java | 2 +- .../main/java/com/plotsquared/core/command/CommandCaller.java | 2 +- .../java/com/plotsquared/core/command/CommandCategory.java | 2 +- .../java/com/plotsquared/core/command/CommandDeclaration.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Comment.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Condense.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Confirm.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Continue.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Copy.java | 2 +- .../com/plotsquared/core/command/CreateRoadSchematic.java | 2 +- .../java/com/plotsquared/core/command/DatabaseCommand.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Debug.java | 2 +- .../java/com/plotsquared/core/command/DebugAllowUnsafe.java | 2 +- .../src/main/java/com/plotsquared/core/command/DebugExec.java | 2 +- .../java/com/plotsquared/core/command/DebugImportWorlds.java | 2 +- .../main/java/com/plotsquared/core/command/DebugLoadTest.java | 2 +- .../main/java/com/plotsquared/core/command/DebugPaste.java | 2 +- .../java/com/plotsquared/core/command/DebugRoadRegen.java | 2 +- .../main/java/com/plotsquared/core/command/DebugSaveTest.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Delete.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Deny.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Desc.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Dislike.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Done.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Download.java | 2 +- .../main/java/com/plotsquared/core/command/FlagCommand.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Grant.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Help.java | 2 +- .../main/java/com/plotsquared/core/command/HomeCommand.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Inbox.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Info.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Kick.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Leave.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Like.java | 2 +- Core/src/main/java/com/plotsquared/core/command/ListCmd.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Load.java | 2 +- .../main/java/com/plotsquared/core/command/MainCommand.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Merge.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Middle.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Move.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Music.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Near.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Owner.java | 2 +- .../src/main/java/com/plotsquared/core/command/PluginCmd.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Purge.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Rate.java | 2 +- .../main/java/com/plotsquared/core/command/RegenAllRoads.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Relight.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Reload.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Remove.java | 2 +- .../main/java/com/plotsquared/core/command/RequiredType.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Save.java | 2 +- .../main/java/com/plotsquared/core/command/SchematicCmd.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Set.java | 2 +- .../main/java/com/plotsquared/core/command/SetCommand.java | 2 +- Core/src/main/java/com/plotsquared/core/command/SetHome.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Setup.java | 2 +- .../main/java/com/plotsquared/core/command/SubCommand.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Swap.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Target.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Template.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Toggle.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Trim.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Trust.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Unlink.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Visit.java | 2 +- .../main/java/com/plotsquared/core/command/WE_Anywhere.java | 2 +- .../com/plotsquared/core/components/ComponentCommand.java | 2 +- .../java/com/plotsquared/core/components/ComponentPreset.java | 2 +- .../plotsquared/core/components/ComponentPresetManager.java | 2 +- .../main/java/com/plotsquared/core/configuration/Caption.java | 2 +- .../com/plotsquared/core/configuration/CaptionUtility.java | 2 +- .../java/com/plotsquared/core/configuration/Captions.java | 2 +- .../com/plotsquared/core/configuration/ChatFormatter.java | 2 +- .../main/java/com/plotsquared/core/configuration/Config.java | 2 +- .../com/plotsquared/core/configuration/Configuration.java | 2 +- .../com/plotsquared/core/configuration/ConfigurationNode.java | 2 +- .../plotsquared/core/configuration/ConfigurationOptions.java | 2 +- .../plotsquared/core/configuration/ConfigurationSection.java | 2 +- .../com/plotsquared/core/configuration/ConfigurationUtil.java | 2 +- .../core/configuration/InvalidConfigurationException.java | 2 +- .../plotsquared/core/configuration/MemoryConfiguration.java | 2 +- .../core/configuration/MemoryConfigurationOptions.java | 2 +- .../com/plotsquared/core/configuration/MemorySection.java | 2 +- .../core/configuration/PlotSquaredChatFormatter.java | 4 ++-- .../java/com/plotsquared/core/configuration/Settings.java | 2 +- .../com/plotsquared/core/configuration/StaticCaption.java | 2 +- .../main/java/com/plotsquared/core/configuration/Storage.java | 2 +- .../core/configuration/file/FileConfiguration.java | 2 +- .../core/configuration/file/FileConfigurationOptions.java | 2 +- .../core/configuration/file/YamlConfiguration.java | 2 +- .../core/configuration/file/YamlConfigurationOptions.java | 2 +- .../plotsquared/core/configuration/file/YamlConstructor.java | 2 +- .../plotsquared/core/configuration/file/YamlRepresenter.java | 2 +- .../serialization/ConfigurationSerializable.java | 2 +- .../serialization/ConfigurationSerialization.java | 2 +- .../configuration/serialization/DelegateDeserialization.java | 2 +- .../core/configuration/serialization/SerializableAs.java | 2 +- .../main/java/com/plotsquared/core/database/AbstractDB.java | 2 +- Core/src/main/java/com/plotsquared/core/database/DBFunc.java | 2 +- .../src/main/java/com/plotsquared/core/database/Database.java | 2 +- Core/src/main/java/com/plotsquared/core/database/MySQL.java | 2 +- .../main/java/com/plotsquared/core/database/SQLManager.java | 2 +- Core/src/main/java/com/plotsquared/core/database/SQLite.java | 2 +- Core/src/main/java/com/plotsquared/core/database/StmtMod.java | 2 +- .../com/plotsquared/core/events/CancellablePlotEvent.java | 2 +- .../java/com/plotsquared/core/events/PlayerAutoPlotEvent.java | 2 +- .../com/plotsquared/core/events/PlayerClaimPlotEvent.java | 2 +- .../com/plotsquared/core/events/PlayerEnterPlotEvent.java | 2 +- .../com/plotsquared/core/events/PlayerLeavePlotEvent.java | 2 +- .../com/plotsquared/core/events/PlayerPlotDeniedEvent.java | 2 +- .../com/plotsquared/core/events/PlayerPlotHelperEvent.java | 2 +- .../com/plotsquared/core/events/PlayerPlotTrustedEvent.java | 2 +- .../plotsquared/core/events/PlayerTeleportToPlotEvent.java | 2 +- .../java/com/plotsquared/core/events/PlotAutoMergeEvent.java | 2 +- .../com/plotsquared/core/events/PlotChangeOwnerEvent.java | 2 +- .../main/java/com/plotsquared/core/events/PlotClearEvent.java | 2 +- .../com/plotsquared/core/events/PlotComponentSetEvent.java | 2 +- .../java/com/plotsquared/core/events/PlotDeleteEvent.java | 2 +- .../main/java/com/plotsquared/core/events/PlotDoneEvent.java | 2 +- Core/src/main/java/com/plotsquared/core/events/PlotEvent.java | 2 +- .../java/com/plotsquared/core/events/PlotFlagAddEvent.java | 2 +- .../main/java/com/plotsquared/core/events/PlotFlagEvent.java | 2 +- .../java/com/plotsquared/core/events/PlotFlagRemoveEvent.java | 2 +- .../main/java/com/plotsquared/core/events/PlotMergeEvent.java | 2 +- .../java/com/plotsquared/core/events/PlotPlayerEvent.java | 2 +- .../main/java/com/plotsquared/core/events/PlotRateEvent.java | 2 +- .../java/com/plotsquared/core/events/PlotUnlinkEvent.java | 2 +- Core/src/main/java/com/plotsquared/core/events/Result.java | 2 +- .../main/java/com/plotsquared/core/events/TeleportCause.java | 2 +- .../java/com/plotsquared/core/generator/AugmentedUtils.java | 2 +- .../com/plotsquared/core/generator/ClassicPlotManager.java | 2 +- .../core/generator/ClassicPlotManagerComponent.java | 2 +- .../java/com/plotsquared/core/generator/ClassicPlotWorld.java | 2 +- .../java/com/plotsquared/core/generator/GeneratorWrapper.java | 2 +- .../java/com/plotsquared/core/generator/GridPlotManager.java | 2 +- .../java/com/plotsquared/core/generator/GridPlotWorld.java | 2 +- .../main/java/com/plotsquared/core/generator/HybridGen.java | 2 +- .../com/plotsquared/core/generator/HybridPlotManager.java | 2 +- .../java/com/plotsquared/core/generator/HybridPlotWorld.java | 2 +- .../main/java/com/plotsquared/core/generator/HybridUtils.java | 2 +- .../plotsquared/core/generator/IndependentPlotGenerator.java | 2 +- .../com/plotsquared/core/generator/SingleWorldGenerator.java | 2 +- .../com/plotsquared/core/generator/SquarePlotManager.java | 2 +- .../java/com/plotsquared/core/generator/SquarePlotWorld.java | 2 +- .../java/com/plotsquared/core/listener/ExtentWrapper.java | 2 +- .../com/plotsquared/core/listener/PlayerBlockEventType.java | 2 +- .../main/java/com/plotsquared/core/listener/PlotListener.java | 2 +- .../java/com/plotsquared/core/listener/ProcessedWEExtent.java | 2 +- .../src/main/java/com/plotsquared/core/listener/WEExtent.java | 2 +- .../main/java/com/plotsquared/core/listener/WESubscriber.java | 2 +- .../src/main/java/com/plotsquared/core/location/BlockLoc.java | 2 +- .../main/java/com/plotsquared/core/location/ChunkWrapper.java | 2 +- .../main/java/com/plotsquared/core/location/Direction.java | 2 +- .../src/main/java/com/plotsquared/core/location/Location.java | 2 +- Core/src/main/java/com/plotsquared/core/location/PlotLoc.java | 2 +- .../main/java/com/plotsquared/core/player/ConsolePlayer.java | 2 +- .../java/com/plotsquared/core/player/OfflinePlotPlayer.java | 2 +- .../src/main/java/com/plotsquared/core/player/PlotPlayer.java | 2 +- Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java | 2 +- Core/src/main/java/com/plotsquared/core/plot/Plot.java | 2 +- Core/src/main/java/com/plotsquared/core/plot/PlotArea.java | 2 +- .../java/com/plotsquared/core/plot/PlotAreaTerrainType.java | 2 +- .../src/main/java/com/plotsquared/core/plot/PlotAreaType.java | 2 +- Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java | 2 +- Core/src/main/java/com/plotsquared/core/plot/PlotFilter.java | 2 +- Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java | 2 +- Core/src/main/java/com/plotsquared/core/plot/PlotId.java | 2 +- .../main/java/com/plotsquared/core/plot/PlotInventory.java | 2 +- .../main/java/com/plotsquared/core/plot/PlotItemStack.java | 2 +- Core/src/main/java/com/plotsquared/core/plot/PlotManager.java | 2 +- .../src/main/java/com/plotsquared/core/plot/PlotSettings.java | 2 +- Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java | 2 +- Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java | 2 +- Core/src/main/java/com/plotsquared/core/plot/Rating.java | 2 +- Core/src/main/java/com/plotsquared/core/plot/SetupObject.java | 2 +- .../java/com/plotsquared/core/plot/comment/CommentInbox.java | 2 +- .../com/plotsquared/core/plot/comment/CommentManager.java | 2 +- .../java/com/plotsquared/core/plot/comment/InboxOwner.java | 2 +- .../java/com/plotsquared/core/plot/comment/InboxPublic.java | 2 +- .../java/com/plotsquared/core/plot/comment/InboxReport.java | 2 +- .../java/com/plotsquared/core/plot/comment/PlotComment.java | 2 +- .../com/plotsquared/core/plot/expiration/ExpireManager.java | 2 +- .../java/com/plotsquared/core/plot/expiration/ExpiryTask.java | 2 +- .../com/plotsquared/core/plot/expiration/PlotAnalysis.java | 2 +- .../java/com/plotsquared/core/plot/flag/FlagContainer.java | 2 +- .../com/plotsquared/core/plot/flag/FlagParseException.java | 2 +- .../com/plotsquared/core/plot/flag/GlobalFlagContainer.java | 2 +- .../java/com/plotsquared/core/plot/flag/InternalFlag.java | 2 +- .../main/java/com/plotsquared/core/plot/flag/PlotFlag.java | 2 +- .../core/plot/flag/implementations/AnalysisFlag.java | 2 +- .../core/plot/flag/implementations/AnimalAttackFlag.java | 2 +- .../core/plot/flag/implementations/AnimalCapFlag.java | 2 +- .../core/plot/flag/implementations/AnimalInteractFlag.java | 2 +- .../core/plot/flag/implementations/BlockBurnFlag.java | 2 +- .../core/plot/flag/implementations/BlockIgnitionFlag.java | 2 +- .../core/plot/flag/implementations/BlockedCmdsFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/BreakFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/ChatFlag.java | 2 +- .../core/plot/flag/implementations/CoralDryFlag.java | 2 +- .../core/plot/flag/implementations/DenyExitFlag.java | 2 +- .../core/plot/flag/implementations/DenyTeleportFlag.java | 2 +- .../core/plot/flag/implementations/DescriptionFlag.java | 2 +- .../core/plot/flag/implementations/DeviceInteractFlag.java | 2 +- .../core/plot/flag/implementations/DisablePhysicsFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/DoneFlag.java | 2 +- .../core/plot/flag/implementations/DropProtectionFlag.java | 2 +- .../core/plot/flag/implementations/EntityCapFlag.java | 2 +- .../core/plot/flag/implementations/ExplosionFlag.java | 2 +- .../core/plot/flag/implementations/FarewellFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/FeedFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/FlyFlag.java | 2 +- .../core/plot/flag/implementations/ForcefieldFlag.java | 2 +- .../core/plot/flag/implementations/GamemodeFlag.java | 2 +- .../core/plot/flag/implementations/GrassGrowFlag.java | 2 +- .../core/plot/flag/implementations/GreetingFlag.java | 2 +- .../core/plot/flag/implementations/GuestGamemodeFlag.java | 2 +- .../core/plot/flag/implementations/HangingBreakFlag.java | 2 +- .../core/plot/flag/implementations/HangingPlaceFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/HealFlag.java | 2 +- .../core/plot/flag/implementations/HideInfoFlag.java | 2 +- .../core/plot/flag/implementations/HostileAttackFlag.java | 2 +- .../core/plot/flag/implementations/HostileCapFlag.java | 2 +- .../core/plot/flag/implementations/HostileInteractFlag.java | 2 +- .../core/plot/flag/implementations/IceFormFlag.java | 2 +- .../core/plot/flag/implementations/IceMeltFlag.java | 2 +- .../core/plot/flag/implementations/InstabreakFlag.java | 2 +- .../core/plot/flag/implementations/InvincibleFlag.java | 2 +- .../core/plot/flag/implementations/ItemDropFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/KeepFlag.java | 2 +- .../core/plot/flag/implementations/KeepInventoryFlag.java | 2 +- .../core/plot/flag/implementations/KelpGrowFlag.java | 2 +- .../core/plot/flag/implementations/LiquidFlowFlag.java | 2 +- .../core/plot/flag/implementations/MiscBreakFlag.java | 2 +- .../core/plot/flag/implementations/MiscCapFlag.java | 2 +- .../core/plot/flag/implementations/MiscInteractFlag.java | 2 +- .../core/plot/flag/implementations/MiscPlaceFlag.java | 2 +- .../core/plot/flag/implementations/MobBreakFlag.java | 2 +- .../core/plot/flag/implementations/MobCapFlag.java | 2 +- .../core/plot/flag/implementations/MobPlaceFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/MusicFlag.java | 2 +- .../core/plot/flag/implementations/MycelGrowFlag.java | 2 +- .../core/plot/flag/implementations/NoWorldeditFlag.java | 2 +- .../core/plot/flag/implementations/NotifyEnterFlag.java | 2 +- .../core/plot/flag/implementations/NotifyLeaveFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/PlaceFlag.java | 2 +- .../core/plot/flag/implementations/PlayerInteractFlag.java | 2 +- .../plot/flag/implementations/PreventCreativeCopyFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/PriceFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/PveFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/PvpFlag.java | 2 +- .../core/plot/flag/implementations/RedstoneFlag.java | 2 +- .../core/plot/flag/implementations/ServerPlotFlag.java | 2 +- .../core/plot/flag/implementations/SnowFormFlag.java | 2 +- .../core/plot/flag/implementations/SnowMeltFlag.java | 2 +- .../core/plot/flag/implementations/SoilDryFlag.java | 2 +- .../core/plot/flag/implementations/TamedAttackFlag.java | 2 +- .../core/plot/flag/implementations/TamedInteractFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/TimeFlag.java | 2 +- .../core/plot/flag/implementations/TitlesFlag.java | 2 +- .../core/plot/flag/implementations/UntrustedVisitFlag.java | 2 +- .../plotsquared/core/plot/flag/implementations/UseFlag.java | 2 +- .../core/plot/flag/implementations/VehicleBreakFlag.java | 2 +- .../core/plot/flag/implementations/VehicleCapFlag.java | 2 +- .../core/plot/flag/implementations/VehiclePlaceFlag.java | 2 +- .../core/plot/flag/implementations/VehicleUseFlag.java | 2 +- .../core/plot/flag/implementations/VillagerInteractFlag.java | 2 +- .../core/plot/flag/implementations/VineGrowFlag.java | 2 +- .../core/plot/flag/implementations/WeatherFlag.java | 2 +- .../plotsquared/core/plot/flag/types/BlockTypeListFlag.java | 2 +- .../plotsquared/core/plot/flag/types/BlockTypeWrapper.java | 2 +- .../com/plotsquared/core/plot/flag/types/BooleanFlag.java | 2 +- .../java/com/plotsquared/core/plot/flag/types/DoubleFlag.java | 2 +- .../com/plotsquared/core/plot/flag/types/IntegerFlag.java | 2 +- .../java/com/plotsquared/core/plot/flag/types/ListFlag.java | 2 +- .../java/com/plotsquared/core/plot/flag/types/LongFlag.java | 2 +- .../core/plot/flag/types/NonNegativeIntegerFlag.java | 2 +- .../java/com/plotsquared/core/plot/flag/types/NumberFlag.java | 2 +- .../java/com/plotsquared/core/plot/flag/types/TimedFlag.java | 2 +- .../com/plotsquared/core/plot/message/PlainChatManager.java | 2 +- .../java/com/plotsquared/core/plot/message/PlotMessage.java | 2 +- .../java/com/plotsquared/core/plot/schematic/PlotItem.java | 2 +- .../java/com/plotsquared/core/plot/schematic/Schematic.java | 2 +- .../com/plotsquared/core/plot/schematic/StoredEntity.java | 2 +- .../plotsquared/core/plot/world/DefaultPlotAreaManager.java | 2 +- .../java/com/plotsquared/core/plot/world/PlotAreaManager.java | 2 +- .../com/plotsquared/core/plot/world/ScatteredPlotWorld.java | 2 +- .../main/java/com/plotsquared/core/plot/world/SinglePlot.java | 2 +- .../java/com/plotsquared/core/plot/world/SinglePlotArea.java | 2 +- .../plotsquared/core/plot/world/SinglePlotAreaManager.java | 2 +- .../com/plotsquared/core/plot/world/SinglePlotManager.java | 2 +- .../com/plotsquared/core/plot/world/StandardPlotWorld.java | 2 +- .../core/queue/AreaBoundDelegateLocalBlockQueue.java | 2 +- .../java/com/plotsquared/core/queue/BasicLocalBlockQueue.java | 2 +- .../main/java/com/plotsquared/core/queue/ChunkBlockQueue.java | 2 +- .../com/plotsquared/core/queue/DelegateLocalBlockQueue.java | 2 +- .../java/com/plotsquared/core/queue/GlobalBlockQueue.java | 2 +- .../main/java/com/plotsquared/core/queue/LocalBlockQueue.java | 2 +- .../core/queue/LocationOffsetDelegateLocalBlockQueue.java | 2 +- .../com/plotsquared/core/queue/OffsetLocalBlockQueue.java | 2 +- .../main/java/com/plotsquared/core/queue/QueueProvider.java | 2 +- .../com/plotsquared/core/queue/ScopedLocalBlockQueue.java | 2 +- .../java/com/plotsquared/core/setup/CommonSetupSteps.java | 2 +- .../main/java/com/plotsquared/core/setup/PlotAreaBuilder.java | 2 +- .../java/com/plotsquared/core/setup/SettingsNodeStep.java | 2 +- .../java/com/plotsquared/core/setup/SettingsNodesWrapper.java | 2 +- .../main/java/com/plotsquared/core/setup/SetupProcess.java | 2 +- Core/src/main/java/com/plotsquared/core/setup/SetupStep.java | 2 +- Core/src/main/java/com/plotsquared/core/util/BlockUtil.java | 2 +- Core/src/main/java/com/plotsquared/core/util/ChatManager.java | 2 +- .../src/main/java/com/plotsquared/core/util/ChunkManager.java | 2 +- .../main/java/com/plotsquared/core/util/ConsoleColors.java | 2 +- Core/src/main/java/com/plotsquared/core/util/EconHandler.java | 2 +- Core/src/main/java/com/plotsquared/core/util/EntityUtil.java | 2 +- .../main/java/com/plotsquared/core/util/EventDispatcher.java | 2 +- Core/src/main/java/com/plotsquared/core/util/Expression.java | 2 +- Core/src/main/java/com/plotsquared/core/util/FileBytes.java | 2 +- .../main/java/com/plotsquared/core/util/InventoryUtil.java | 2 +- Core/src/main/java/com/plotsquared/core/util/ItemUtil.java | 2 +- Core/src/main/java/com/plotsquared/core/util/LazyBlock.java | 2 +- Core/src/main/java/com/plotsquared/core/util/LazyResult.java | 2 +- .../main/java/com/plotsquared/core/util/LegacyConverter.java | 2 +- Core/src/main/java/com/plotsquared/core/util/MainUtil.java | 2 +- Core/src/main/java/com/plotsquared/core/util/MathMan.java | 2 +- .../main/java/com/plotsquared/core/util/OperationUtil.java | 2 +- Core/src/main/java/com/plotsquared/core/util/PatternUtil.java | 2 +- Core/src/main/java/com/plotsquared/core/util/PermHandler.java | 2 +- Core/src/main/java/com/plotsquared/core/util/Permissions.java | 2 +- .../java/com/plotsquared/core/util/PlatformWorldManager.java | 2 +- .../main/java/com/plotsquared/core/util/PlayerManager.java | 2 +- .../java/com/plotsquared/core/util/PlotAreaConverter.java | 2 +- .../java/com/plotsquared/core/util/PremiumVerification.java | 2 +- .../src/main/java/com/plotsquared/core/util/PseudoRandom.java | 2 +- .../main/java/com/plotsquared/core/util/ReflectionUtils.java | 2 +- Core/src/main/java/com/plotsquared/core/util/RegExUtil.java | 2 +- .../main/java/com/plotsquared/core/util/RegionManager.java | 2 +- Core/src/main/java/com/plotsquared/core/util/RegionUtil.java | 2 +- .../plotsquared/core/util/RuntimeExceptionRunnableVal.java | 2 +- .../main/java/com/plotsquared/core/util/SchematicHandler.java | 2 +- Core/src/main/java/com/plotsquared/core/util/SetupUtils.java | 2 +- .../main/java/com/plotsquared/core/util/StringComparison.java | 2 +- Core/src/main/java/com/plotsquared/core/util/StringMan.java | 2 +- .../main/java/com/plotsquared/core/util/StringWrapper.java | 2 +- .../main/java/com/plotsquared/core/util/TabCompletions.java | 2 +- Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java | 2 +- Core/src/main/java/com/plotsquared/core/util/WEManager.java | 2 +- Core/src/main/java/com/plotsquared/core/util/WorldUtil.java | 2 +- .../com/plotsquared/core/util/entity/EntityCategories.java | 2 +- .../java/com/plotsquared/core/util/entity/EntityCategory.java | 2 +- .../java/com/plotsquared/core/util/helpmenu/HelpMenu.java | 2 +- .../java/com/plotsquared/core/util/helpmenu/HelpObject.java | 2 +- .../java/com/plotsquared/core/util/helpmenu/HelpPage.java | 2 +- .../java/com/plotsquared/core/util/logger/DelegateLogger.java | 2 +- .../main/java/com/plotsquared/core/util/logger/ILogger.java | 2 +- .../core/util/net/AbstractDelegateOutputStream.java | 2 +- .../src/main/java/com/plotsquared/core/util/net/HttpUtil.java | 2 +- .../com/plotsquared/core/util/placeholders/Placeholder.java | 2 +- .../core/util/placeholders/PlaceholderRegistry.java | 2 +- .../core/util/placeholders/PlotFlagPlaceholder.java | 2 +- .../core/util/placeholders/PlotSpecificPlaceholder.java | 2 +- .../java/com/plotsquared/core/util/query/AliasFilter.java | 2 +- .../plotsquared/core/util/query/AreaLimitedPlotProvider.java | 2 +- .../com/plotsquared/core/util/query/ExpiredPlotProvider.java | 2 +- .../com/plotsquared/core/util/query/FixedPlotProvider.java | 2 +- .../com/plotsquared/core/util/query/GlobalPlotProvider.java | 2 +- .../java/com/plotsquared/core/util/query/MemberFilter.java | 2 +- .../java/com/plotsquared/core/util/query/NullProvider.java | 2 +- .../java/com/plotsquared/core/util/query/OwnerFilter.java | 2 +- .../com/plotsquared/core/util/query/PaginatedPlotResult.java | 2 +- .../main/java/com/plotsquared/core/util/query/PlotFilter.java | 2 +- .../java/com/plotsquared/core/util/query/PlotProvider.java | 2 +- .../main/java/com/plotsquared/core/util/query/PlotQuery.java | 2 +- .../java/com/plotsquared/core/util/query/PredicateFilter.java | 2 +- .../com/plotsquared/core/util/query/SearchPlotProvider.java | 2 +- .../java/com/plotsquared/core/util/query/SortingStrategy.java | 2 +- .../com/plotsquared/core/util/task/AutoClaimFinishTask.java | 2 +- .../com/plotsquared/core/util/task/ObjectTaskRunnable.java | 2 +- .../main/java/com/plotsquared/core/util/task/RunnableVal.java | 2 +- .../java/com/plotsquared/core/util/task/RunnableVal2.java | 2 +- .../java/com/plotsquared/core/util/task/RunnableVal3.java | 2 +- .../main/java/com/plotsquared/core/util/task/TaskManager.java | 2 +- .../main/java/com/plotsquared/core/uuid/CacheUUIDService.java | 2 +- .../src/main/java/com/plotsquared/core/uuid/ServiceError.java | 2 +- Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java | 2 +- .../src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java | 2 +- Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java | 2 +- .../plotsquared/core/uuid/offline/OfflineModeUUIDService.java | 2 +- Core/src/main/resources/addplots.js | 2 +- Core/src/main/resources/addsigns.js | 2 +- Core/src/main/resources/automerge.js | 2 +- Core/src/main/resources/fixborders.js | 2 +- Core/src/main/resources/furthest.js | 2 +- Core/src/main/resources/mycommand.js | 2 +- Core/src/main/resources/setbiomes.js | 2 +- Core/src/main/resources/start.js | 2 +- .../java/com/plotsquared/core/database/AbstractDBTest.java | 2 +- Core/src/test/java/com/plotsquared/core/plot/FlagTest.java | 2 +- .../test/java/com/plotsquared/core/plot/PlotVersionTest.java | 2 +- .../java/com/plotsquared/core/plot/object/LocationTest.java | 2 +- .../com/plotsquared/core/plot/util/EventDispatcherTest.java | 2 +- build.gradle | 2 +- 504 files changed, 506 insertions(+), 506 deletions(-) diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitCommand.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitCommand.java index 1f5b0de02..1cdf04826 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitCommand.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitCommand.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java index 8d6723659..54cdf00f1 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/ArrayWrapper.java b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/ArrayWrapper.java index 41aaf4451..46857fe3c 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/ArrayWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/ArrayWrapper.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/FancyMessage.java b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/FancyMessage.java index 739d3bbd4..c7a1d6470 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/FancyMessage.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/FancyMessage.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/JsonRepresentedObject.java b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/JsonRepresentedObject.java index 3fc315a72..28e66698c 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/JsonRepresentedObject.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/JsonRepresentedObject.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/JsonString.java b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/JsonString.java index 68b5706bb..34a9bf205 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/JsonString.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/JsonString.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/MessagePart.java b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/MessagePart.java index 14b0784c4..536e8a246 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/MessagePart.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/MessagePart.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/Reflection.java b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/Reflection.java index fd3b65e10..621c156d9 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/Reflection.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/Reflection.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/TextualComponent.java b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/TextualComponent.java index 2a47fcc37..f39285ea1 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/chat/TextualComponent.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/chat/TextualComponent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/AgeableStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/AgeableStats.java index 5b9e5ace5..79646d241 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/AgeableStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/AgeableStats.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ArmorStandStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ArmorStandStats.java index 8c49e1f2a..de88c2049 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ArmorStandStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ArmorStandStats.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityBaseStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityBaseStats.java index 6a99e7771..fe129f450 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityBaseStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityBaseStats.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityWrapper.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityWrapper.java index 6e777f23a..28a35581e 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityWrapper.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/HorseStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/HorseStats.java index af97ac055..4e1ad18b4 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/HorseStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/HorseStats.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/LivingEntityStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/LivingEntityStats.java index cbad9f8f8..1fde04382 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/LivingEntityStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/LivingEntityStats.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ReplicatingEntityWrapper.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ReplicatingEntityWrapper.java index d82c274e9..9cefa64c1 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ReplicatingEntityWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ReplicatingEntityWrapper.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TameableStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TameableStats.java index b844495ac..f4f8fa423 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TameableStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TameableStats.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TeleportEntityWrapper.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TeleportEntityWrapper.java index 45613a751..1e4734387 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TeleportEntityWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TeleportEntityWrapper.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BlockStatePopulator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BlockStatePopulator.java index a89588598..2c7aa53e5 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BlockStatePopulator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BlockStatePopulator.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitAugmentedGenerator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitAugmentedGenerator.java index ff158f295..64f66d2c2 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitAugmentedGenerator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitAugmentedGenerator.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitHybridUtils.java b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitHybridUtils.java index 2cf4a3b8b..f9f78f416 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitHybridUtils.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitHybridUtils.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitPlotGenerator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitPlotGenerator.java index 6f886904f..959789e0e 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitPlotGenerator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitPlotGenerator.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/DelegatePlotGenerator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/DelegatePlotGenerator.java index d5086b06d..a4ea7f634 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/DelegatePlotGenerator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/DelegatePlotGenerator.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/BlockEventListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/BlockEventListener.java index e84bf475a..f08e58653 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/BlockEventListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/BlockEventListener.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ChunkListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ChunkListener.java index 1cfc897d4..11dfbd201 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ChunkListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ChunkListener.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntityEventListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntityEventListener.java index 7c43d8de1..31302dfcc 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntityEventListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntityEventListener.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntitySpawnListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntitySpawnListener.java index 08a0d12ff..f004e6dd0 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntitySpawnListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntitySpawnListener.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ForceFieldListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ForceFieldListener.java index 7cc0de41d..9e114f121 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ForceFieldListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ForceFieldListener.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java index 0413802e7..98bbba992 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener113.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener113.java index fc5fca677..068b9ecfd 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener113.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener113.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java index 996c5a2d8..5c1b19bb1 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ProjectileEventListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ProjectileEventListener.java index a4cfd6171..42f5e70f2 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ProjectileEventListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ProjectileEventListener.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ServerListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ServerListener.java index 60842c2d9..bba0ecbfd 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ServerListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ServerListener.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java index a5a5ff2f8..dc55b9d7f 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/WorldEvents.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/WorldEvents.java index 59e1fb2ec..b141a9f6d 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/WorldEvents.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/WorldEvents.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/BukkitWorldManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/BukkitWorldManager.java index a1fbb6428..d700e0f22 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/BukkitWorldManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/BukkitWorldManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/HyperverseWorldManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/HyperverseWorldManager.java index 705a30286..e4b836d07 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/HyperverseWorldManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/HyperverseWorldManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/MultiverseWorldManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/MultiverseWorldManager.java index e8cb4cf1e..0b0a18d5a 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/MultiverseWorldManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/MultiverseWorldManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java index 599a1122b..e05e2e577 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java index 52d30d5ed..0646488db 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PlaceholderFormatter.java b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PlaceholderFormatter.java index 674d810f2..36e143a53 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PlaceholderFormatter.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PlaceholderFormatter.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitOfflinePlayer.java b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitOfflinePlayer.java index 8f46d3636..c49fe731c 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitOfflinePlayer.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitOfflinePlayer.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayer.java b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayer.java index 1d4a0284e..704aa0f6d 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayer.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayer.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -227,7 +227,7 @@ public class BukkitPlayer extends PlotPlayer { } @Override public void sendMessage(String message) { - message = message.replace('\u2010', '%').replace('\u2020', '&').replace('\u2030', '&'); + message = message.replace('\u2010', '%').replace('\u2021', '&').replace('\u2030', '&'); if (!StringMan.isEqual(this.getMeta("lastMessage"), message) || ( System.currentTimeMillis() - this.getMeta("lastMessageTime") > 5000)) { setMeta("lastMessage", message); diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayerManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayerManager.java index a15718a5f..2207eea6d 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayerManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayerManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitLocalQueue.java b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitLocalQueue.java index c8d6d929f..9274e846a 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitLocalQueue.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitLocalQueue.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/ChunkCoordinator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/ChunkCoordinator.java index cc5c1f72f..4c1512c55 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/ChunkCoordinator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/ChunkCoordinator.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/GenChunk.java b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/GenChunk.java index c20815e1e..004ae12f1 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/GenChunk.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/GenChunk.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/BukkitSchematicHandler.java b/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/BukkitSchematicHandler.java index 27ce9139f..7841b1013 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/BukkitSchematicHandler.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/BukkitSchematicHandler.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/StateWrapper.java b/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/StateWrapper.java index 3b62aa6a8..17f097ae6 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/StateWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/StateWrapper.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitBlockUtil.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitBlockUtil.java index a46688819..f6a2332bb 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitBlockUtil.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitBlockUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChatManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChatManager.java index 49c4f061b..30c2ffaa7 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChatManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChatManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChunkManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChunkManager.java index 093682cba..cb4b72a04 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChunkManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChunkManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEconHandler.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEconHandler.java index e71c48158..4d23f7e9f 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEconHandler.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEconHandler.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEntityUtil.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEntityUtil.java index c11bcc234..bec5d0a0f 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEntityUtil.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEntityUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java index 00adeb892..de59db4a6 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitPermHandler.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitPermHandler.java index fee00a66d..e447fb04a 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitPermHandler.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitPermHandler.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitRegionManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitRegionManager.java index fc71c9d31..0dce3c6d6 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitRegionManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitRegionManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitSetupUtils.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitSetupUtils.java index 53185b608..df2fda69a 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitSetupUtils.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitSetupUtils.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitTaskManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitTaskManager.java index b797708f2..13ca57473 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitTaskManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitTaskManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java index 5acdde298..de0a96ce9 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/ContentMap.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/ContentMap.java index 08381ee22..64cfb8124 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/ContentMap.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/ContentMap.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/OfflinePlayerUtil.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/OfflinePlayerUtil.java index 94a6acedf..def284160 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/OfflinePlayerUtil.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/OfflinePlayerUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/SetGenCB.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/SetGenCB.java index bd77fe27d..9a05a5891 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/SetGenCB.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/SetGenCB.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/UpdateUtility.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/UpdateUtility.java index 458e3ca58..e88bb9124 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/UpdateUtility.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/UpdateUtility.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/EssentialsUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/EssentialsUUIDService.java index eb473d67e..7308ed8c7 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/EssentialsUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/EssentialsUUIDService.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java index 47bcc9bb3..8fc57c72f 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java index 7b904e627..1a8ab39c7 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/PaperUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/PaperUUIDService.java index 4f370c8b3..f75b58cf3 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/PaperUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/PaperUUIDService.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java index 16b3abff5..aed79a66a 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java index 8c8dfca83..416c45af5 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/IPlotMain.java b/Core/src/main/java/com/plotsquared/core/IPlotMain.java index 2ac8910f3..10e2f9f1f 100644 --- a/Core/src/main/java/com/plotsquared/core/IPlotMain.java +++ b/Core/src/main/java/com/plotsquared/core/IPlotMain.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/Platform.java b/Core/src/main/java/com/plotsquared/core/Platform.java index 3a9eb42e1..72dd40d5a 100644 --- a/Core/src/main/java/com/plotsquared/core/Platform.java +++ b/Core/src/main/java/com/plotsquared/core/Platform.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/PlotSquared.java b/Core/src/main/java/com/plotsquared/core/PlotSquared.java index 292112855..98496bb86 100644 --- a/Core/src/main/java/com/plotsquared/core/PlotSquared.java +++ b/Core/src/main/java/com/plotsquared/core/PlotSquared.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/PlotVersion.java b/Core/src/main/java/com/plotsquared/core/PlotVersion.java index 86f3e8d58..b9580d760 100644 --- a/Core/src/main/java/com/plotsquared/core/PlotVersion.java +++ b/Core/src/main/java/com/plotsquared/core/PlotVersion.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/api/PlotAPI.java b/Core/src/main/java/com/plotsquared/core/api/PlotAPI.java index 3991643a3..746d67211 100644 --- a/Core/src/main/java/com/plotsquared/core/api/PlotAPI.java +++ b/Core/src/main/java/com/plotsquared/core/api/PlotAPI.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/backup/Backup.java b/Core/src/main/java/com/plotsquared/core/backup/Backup.java index a84fc497f..0f5028343 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/Backup.java +++ b/Core/src/main/java/com/plotsquared/core/backup/Backup.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/backup/BackupManager.java b/Core/src/main/java/com/plotsquared/core/backup/BackupManager.java index 4ba4a44f4..a052b2314 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/BackupManager.java +++ b/Core/src/main/java/com/plotsquared/core/backup/BackupManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/backup/BackupProfile.java b/Core/src/main/java/com/plotsquared/core/backup/BackupProfile.java index 6664246e4..a817dd4fa 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/BackupProfile.java +++ b/Core/src/main/java/com/plotsquared/core/backup/BackupProfile.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/backup/NullBackupManager.java b/Core/src/main/java/com/plotsquared/core/backup/NullBackupManager.java index 2d8c04a76..9845890f8 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/NullBackupManager.java +++ b/Core/src/main/java/com/plotsquared/core/backup/NullBackupManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/backup/NullBackupProfile.java b/Core/src/main/java/com/plotsquared/core/backup/NullBackupProfile.java index 39c833579..bb8511a74 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/NullBackupProfile.java +++ b/Core/src/main/java/com/plotsquared/core/backup/NullBackupProfile.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/backup/PlayerBackupProfile.java b/Core/src/main/java/com/plotsquared/core/backup/PlayerBackupProfile.java index c71057ab5..d1312bd53 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/PlayerBackupProfile.java +++ b/Core/src/main/java/com/plotsquared/core/backup/PlayerBackupProfile.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/backup/SimpleBackupManager.java b/Core/src/main/java/com/plotsquared/core/backup/SimpleBackupManager.java index 57cbea1d8..4f56bfb84 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/SimpleBackupManager.java +++ b/Core/src/main/java/com/plotsquared/core/backup/SimpleBackupManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/collection/ArrayUtil.java b/Core/src/main/java/com/plotsquared/core/collection/ArrayUtil.java index cd72475e7..b843f80a4 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/ArrayUtil.java +++ b/Core/src/main/java/com/plotsquared/core/collection/ArrayUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/collection/ByteArrayUtilities.java b/Core/src/main/java/com/plotsquared/core/collection/ByteArrayUtilities.java index b21ced106..030dbba2e 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/ByteArrayUtilities.java +++ b/Core/src/main/java/com/plotsquared/core/collection/ByteArrayUtilities.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/collection/FlatRandomCollection.java b/Core/src/main/java/com/plotsquared/core/collection/FlatRandomCollection.java index 0834f0d4f..bdad28d9e 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/FlatRandomCollection.java +++ b/Core/src/main/java/com/plotsquared/core/collection/FlatRandomCollection.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/collection/QuadMap.java b/Core/src/main/java/com/plotsquared/core/collection/QuadMap.java index d5b4e9394..971bab6f3 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/QuadMap.java +++ b/Core/src/main/java/com/plotsquared/core/collection/QuadMap.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/collection/RandomCollection.java b/Core/src/main/java/com/plotsquared/core/collection/RandomCollection.java index f6209ceb6..744b4eb8f 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/RandomCollection.java +++ b/Core/src/main/java/com/plotsquared/core/collection/RandomCollection.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/collection/SimpleRandomCollection.java b/Core/src/main/java/com/plotsquared/core/collection/SimpleRandomCollection.java index 905c69cfd..a294a27ee 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/SimpleRandomCollection.java +++ b/Core/src/main/java/com/plotsquared/core/collection/SimpleRandomCollection.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Add.java b/Core/src/main/java/com/plotsquared/core/command/Add.java index f3e5015ca..20da13ca0 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Add.java +++ b/Core/src/main/java/com/plotsquared/core/command/Add.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Alias.java b/Core/src/main/java/com/plotsquared/core/command/Alias.java index 71a82c91f..f89d42fbe 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Alias.java +++ b/Core/src/main/java/com/plotsquared/core/command/Alias.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Area.java b/Core/src/main/java/com/plotsquared/core/command/Area.java index 383076f0d..5f883db0d 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Area.java +++ b/Core/src/main/java/com/plotsquared/core/command/Area.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Argument.java b/Core/src/main/java/com/plotsquared/core/command/Argument.java index 2bb203ac8..47b24a69b 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Argument.java +++ b/Core/src/main/java/com/plotsquared/core/command/Argument.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Auto.java b/Core/src/main/java/com/plotsquared/core/command/Auto.java index 4c75de3f8..163cead3e 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Auto.java +++ b/Core/src/main/java/com/plotsquared/core/command/Auto.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Backup.java b/Core/src/main/java/com/plotsquared/core/command/Backup.java index 944eaaf6b..ee14a50a8 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Backup.java +++ b/Core/src/main/java/com/plotsquared/core/command/Backup.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Biome.java b/Core/src/main/java/com/plotsquared/core/command/Biome.java index c8fde1659..bd825a7bf 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Biome.java +++ b/Core/src/main/java/com/plotsquared/core/command/Biome.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Buy.java b/Core/src/main/java/com/plotsquared/core/command/Buy.java index 337801385..35932b20c 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Buy.java +++ b/Core/src/main/java/com/plotsquared/core/command/Buy.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Caps.java b/Core/src/main/java/com/plotsquared/core/command/Caps.java index b56d33dc0..f9a0570ef 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Caps.java +++ b/Core/src/main/java/com/plotsquared/core/command/Caps.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Chat.java b/Core/src/main/java/com/plotsquared/core/command/Chat.java index 3bf04f223..e822a3f42 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Chat.java +++ b/Core/src/main/java/com/plotsquared/core/command/Chat.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Claim.java b/Core/src/main/java/com/plotsquared/core/command/Claim.java index 481a25bf5..8acc9d117 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Claim.java +++ b/Core/src/main/java/com/plotsquared/core/command/Claim.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Clear.java b/Core/src/main/java/com/plotsquared/core/command/Clear.java index 9d8279eda..408916569 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Clear.java +++ b/Core/src/main/java/com/plotsquared/core/command/Clear.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Cluster.java b/Core/src/main/java/com/plotsquared/core/command/Cluster.java index 557ba084b..7a357a745 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Cluster.java +++ b/Core/src/main/java/com/plotsquared/core/command/Cluster.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/CmdConfirm.java b/Core/src/main/java/com/plotsquared/core/command/CmdConfirm.java index f7096834b..2f35d7b9c 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CmdConfirm.java +++ b/Core/src/main/java/com/plotsquared/core/command/CmdConfirm.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/CmdInstance.java b/Core/src/main/java/com/plotsquared/core/command/CmdInstance.java index 7dbd19407..55874cce5 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CmdInstance.java +++ b/Core/src/main/java/com/plotsquared/core/command/CmdInstance.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Command.java b/Core/src/main/java/com/plotsquared/core/command/Command.java index 194fc48a4..40e63c8e9 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Command.java +++ b/Core/src/main/java/com/plotsquared/core/command/Command.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/CommandCaller.java b/Core/src/main/java/com/plotsquared/core/command/CommandCaller.java index b26eed517..ee5b81aab 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CommandCaller.java +++ b/Core/src/main/java/com/plotsquared/core/command/CommandCaller.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java b/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java index 2cffd99c0..3417b19ed 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java +++ b/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/CommandDeclaration.java b/Core/src/main/java/com/plotsquared/core/command/CommandDeclaration.java index 105543ba0..5bf03195d 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CommandDeclaration.java +++ b/Core/src/main/java/com/plotsquared/core/command/CommandDeclaration.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Comment.java b/Core/src/main/java/com/plotsquared/core/command/Comment.java index a5615533f..5bed203fc 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Comment.java +++ b/Core/src/main/java/com/plotsquared/core/command/Comment.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Condense.java b/Core/src/main/java/com/plotsquared/core/command/Condense.java index 8f792ee7e..8837a6a4c 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Condense.java +++ b/Core/src/main/java/com/plotsquared/core/command/Condense.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Confirm.java b/Core/src/main/java/com/plotsquared/core/command/Confirm.java index 311c1c437..0d1617a10 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Confirm.java +++ b/Core/src/main/java/com/plotsquared/core/command/Confirm.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Continue.java b/Core/src/main/java/com/plotsquared/core/command/Continue.java index 23f5e93a0..a92b1aa44 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Continue.java +++ b/Core/src/main/java/com/plotsquared/core/command/Continue.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Copy.java b/Core/src/main/java/com/plotsquared/core/command/Copy.java index 6743074ff..9d92ad84e 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Copy.java +++ b/Core/src/main/java/com/plotsquared/core/command/Copy.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/CreateRoadSchematic.java b/Core/src/main/java/com/plotsquared/core/command/CreateRoadSchematic.java index d5800896a..0913f81bc 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CreateRoadSchematic.java +++ b/Core/src/main/java/com/plotsquared/core/command/CreateRoadSchematic.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java b/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java index 41690b5af..0e41e3a79 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Debug.java b/Core/src/main/java/com/plotsquared/core/command/Debug.java index 91997a4ec..a091d6475 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Debug.java +++ b/Core/src/main/java/com/plotsquared/core/command/Debug.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugAllowUnsafe.java b/Core/src/main/java/com/plotsquared/core/command/DebugAllowUnsafe.java index d424b809f..4c42112a4 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugAllowUnsafe.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugAllowUnsafe.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugExec.java b/Core/src/main/java/com/plotsquared/core/command/DebugExec.java index 3d6af68f1..3591b7354 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugExec.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugExec.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugImportWorlds.java b/Core/src/main/java/com/plotsquared/core/command/DebugImportWorlds.java index bdb5a13b2..362b599ef 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugImportWorlds.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugImportWorlds.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugLoadTest.java b/Core/src/main/java/com/plotsquared/core/command/DebugLoadTest.java index 387c5204e..fcdfbebf9 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugLoadTest.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugLoadTest.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java b/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java index ec94095db..55deff92f 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugRoadRegen.java b/Core/src/main/java/com/plotsquared/core/command/DebugRoadRegen.java index b20924586..984240f71 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugRoadRegen.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugRoadRegen.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugSaveTest.java b/Core/src/main/java/com/plotsquared/core/command/DebugSaveTest.java index 7307ca185..67c8f004b 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugSaveTest.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugSaveTest.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Delete.java b/Core/src/main/java/com/plotsquared/core/command/Delete.java index 5f8178e06..7a4c8bd50 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Delete.java +++ b/Core/src/main/java/com/plotsquared/core/command/Delete.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Deny.java b/Core/src/main/java/com/plotsquared/core/command/Deny.java index 858b3bf78..381202b0e 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Deny.java +++ b/Core/src/main/java/com/plotsquared/core/command/Deny.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Desc.java b/Core/src/main/java/com/plotsquared/core/command/Desc.java index f128920e8..626336967 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Desc.java +++ b/Core/src/main/java/com/plotsquared/core/command/Desc.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Dislike.java b/Core/src/main/java/com/plotsquared/core/command/Dislike.java index 410e13b57..c2b7e50da 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Dislike.java +++ b/Core/src/main/java/com/plotsquared/core/command/Dislike.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Done.java b/Core/src/main/java/com/plotsquared/core/command/Done.java index 258454f8a..fc0802760 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Done.java +++ b/Core/src/main/java/com/plotsquared/core/command/Done.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Download.java b/Core/src/main/java/com/plotsquared/core/command/Download.java index efd4079d5..5154de3bf 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Download.java +++ b/Core/src/main/java/com/plotsquared/core/command/Download.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/FlagCommand.java b/Core/src/main/java/com/plotsquared/core/command/FlagCommand.java index d6b5a58e8..6b1d70bec 100644 --- a/Core/src/main/java/com/plotsquared/core/command/FlagCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/FlagCommand.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Grant.java b/Core/src/main/java/com/plotsquared/core/command/Grant.java index dd4add2c9..3b52b62d3 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Grant.java +++ b/Core/src/main/java/com/plotsquared/core/command/Grant.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Help.java b/Core/src/main/java/com/plotsquared/core/command/Help.java index ef4b5a753..7c125f65e 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Help.java +++ b/Core/src/main/java/com/plotsquared/core/command/Help.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java b/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java index fe25c585e..7503b8836 100644 --- a/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Inbox.java b/Core/src/main/java/com/plotsquared/core/command/Inbox.java index a042e72cb..d6f3141c4 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Inbox.java +++ b/Core/src/main/java/com/plotsquared/core/command/Inbox.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Info.java b/Core/src/main/java/com/plotsquared/core/command/Info.java index 125d0008d..bb47c7114 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Info.java +++ b/Core/src/main/java/com/plotsquared/core/command/Info.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Kick.java b/Core/src/main/java/com/plotsquared/core/command/Kick.java index 810051a4c..577f3e9b8 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Kick.java +++ b/Core/src/main/java/com/plotsquared/core/command/Kick.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Leave.java b/Core/src/main/java/com/plotsquared/core/command/Leave.java index 3a0d7f09d..6d522eff0 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Leave.java +++ b/Core/src/main/java/com/plotsquared/core/command/Leave.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Like.java b/Core/src/main/java/com/plotsquared/core/command/Like.java index 216c6524c..ea99981a0 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Like.java +++ b/Core/src/main/java/com/plotsquared/core/command/Like.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/ListCmd.java b/Core/src/main/java/com/plotsquared/core/command/ListCmd.java index a08de0cd0..15f968183 100644 --- a/Core/src/main/java/com/plotsquared/core/command/ListCmd.java +++ b/Core/src/main/java/com/plotsquared/core/command/ListCmd.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Load.java b/Core/src/main/java/com/plotsquared/core/command/Load.java index aa952a007..5a807c22c 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Load.java +++ b/Core/src/main/java/com/plotsquared/core/command/Load.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/MainCommand.java b/Core/src/main/java/com/plotsquared/core/command/MainCommand.java index 0df008815..d52ac7a99 100644 --- a/Core/src/main/java/com/plotsquared/core/command/MainCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/MainCommand.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Merge.java b/Core/src/main/java/com/plotsquared/core/command/Merge.java index 33754c4b8..ecbc7c5eb 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Merge.java +++ b/Core/src/main/java/com/plotsquared/core/command/Merge.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Middle.java b/Core/src/main/java/com/plotsquared/core/command/Middle.java index 14c760eef..a0d4f0704 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Middle.java +++ b/Core/src/main/java/com/plotsquared/core/command/Middle.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Move.java b/Core/src/main/java/com/plotsquared/core/command/Move.java index 136bbcfaa..d77cb0253 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Move.java +++ b/Core/src/main/java/com/plotsquared/core/command/Move.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Music.java b/Core/src/main/java/com/plotsquared/core/command/Music.java index c113f6ae0..488946f01 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Music.java +++ b/Core/src/main/java/com/plotsquared/core/command/Music.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Near.java b/Core/src/main/java/com/plotsquared/core/command/Near.java index 20780613a..229720505 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Near.java +++ b/Core/src/main/java/com/plotsquared/core/command/Near.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Owner.java b/Core/src/main/java/com/plotsquared/core/command/Owner.java index 42e2df5e8..14e5bcccc 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Owner.java +++ b/Core/src/main/java/com/plotsquared/core/command/Owner.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java b/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java index b0bf24d40..0165a916f 100644 --- a/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java +++ b/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Purge.java b/Core/src/main/java/com/plotsquared/core/command/Purge.java index d7a7ede26..f38b7468b 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Purge.java +++ b/Core/src/main/java/com/plotsquared/core/command/Purge.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Rate.java b/Core/src/main/java/com/plotsquared/core/command/Rate.java index 23affc37d..da6b78311 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Rate.java +++ b/Core/src/main/java/com/plotsquared/core/command/Rate.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/RegenAllRoads.java b/Core/src/main/java/com/plotsquared/core/command/RegenAllRoads.java index 69d0022f6..42db37ad2 100644 --- a/Core/src/main/java/com/plotsquared/core/command/RegenAllRoads.java +++ b/Core/src/main/java/com/plotsquared/core/command/RegenAllRoads.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Relight.java b/Core/src/main/java/com/plotsquared/core/command/Relight.java index 4a2475b5f..7d7f432a5 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Relight.java +++ b/Core/src/main/java/com/plotsquared/core/command/Relight.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Reload.java b/Core/src/main/java/com/plotsquared/core/command/Reload.java index 0b8f4b6fe..34a3fd546 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Reload.java +++ b/Core/src/main/java/com/plotsquared/core/command/Reload.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Remove.java b/Core/src/main/java/com/plotsquared/core/command/Remove.java index 1c2797941..841480596 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Remove.java +++ b/Core/src/main/java/com/plotsquared/core/command/Remove.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/RequiredType.java b/Core/src/main/java/com/plotsquared/core/command/RequiredType.java index c0a88105b..2d651b026 100644 --- a/Core/src/main/java/com/plotsquared/core/command/RequiredType.java +++ b/Core/src/main/java/com/plotsquared/core/command/RequiredType.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Save.java b/Core/src/main/java/com/plotsquared/core/command/Save.java index 480167576..e9a719b83 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Save.java +++ b/Core/src/main/java/com/plotsquared/core/command/Save.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/SchematicCmd.java b/Core/src/main/java/com/plotsquared/core/command/SchematicCmd.java index 66e4a0662..ec5af7245 100644 --- a/Core/src/main/java/com/plotsquared/core/command/SchematicCmd.java +++ b/Core/src/main/java/com/plotsquared/core/command/SchematicCmd.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Set.java b/Core/src/main/java/com/plotsquared/core/command/Set.java index ec75fd9eb..3c4b33e21 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Set.java +++ b/Core/src/main/java/com/plotsquared/core/command/Set.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/SetCommand.java b/Core/src/main/java/com/plotsquared/core/command/SetCommand.java index aede7e779..7a9425669 100644 --- a/Core/src/main/java/com/plotsquared/core/command/SetCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/SetCommand.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/SetHome.java b/Core/src/main/java/com/plotsquared/core/command/SetHome.java index d9182faed..3a90d875e 100644 --- a/Core/src/main/java/com/plotsquared/core/command/SetHome.java +++ b/Core/src/main/java/com/plotsquared/core/command/SetHome.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Setup.java b/Core/src/main/java/com/plotsquared/core/command/Setup.java index bdcd20697..bdda7a458 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Setup.java +++ b/Core/src/main/java/com/plotsquared/core/command/Setup.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/SubCommand.java b/Core/src/main/java/com/plotsquared/core/command/SubCommand.java index 8692d1cae..7f24a3593 100644 --- a/Core/src/main/java/com/plotsquared/core/command/SubCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/SubCommand.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Swap.java b/Core/src/main/java/com/plotsquared/core/command/Swap.java index 9e7ce5208..de437411b 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Swap.java +++ b/Core/src/main/java/com/plotsquared/core/command/Swap.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Target.java b/Core/src/main/java/com/plotsquared/core/command/Target.java index d11791538..d5f0ce138 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Target.java +++ b/Core/src/main/java/com/plotsquared/core/command/Target.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Template.java b/Core/src/main/java/com/plotsquared/core/command/Template.java index 02bc7af4d..0c537e0cd 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Template.java +++ b/Core/src/main/java/com/plotsquared/core/command/Template.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Toggle.java b/Core/src/main/java/com/plotsquared/core/command/Toggle.java index e9e46ac7a..109378bee 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Toggle.java +++ b/Core/src/main/java/com/plotsquared/core/command/Toggle.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Trim.java b/Core/src/main/java/com/plotsquared/core/command/Trim.java index ad5e5c0fe..f9dd7cde7 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Trim.java +++ b/Core/src/main/java/com/plotsquared/core/command/Trim.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Trust.java b/Core/src/main/java/com/plotsquared/core/command/Trust.java index 066a02278..a58afb073 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Trust.java +++ b/Core/src/main/java/com/plotsquared/core/command/Trust.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Unlink.java b/Core/src/main/java/com/plotsquared/core/command/Unlink.java index 1f309df57..0b2676c1a 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Unlink.java +++ b/Core/src/main/java/com/plotsquared/core/command/Unlink.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/Visit.java b/Core/src/main/java/com/plotsquared/core/command/Visit.java index 0108cc02d..b96cb9b5a 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Visit.java +++ b/Core/src/main/java/com/plotsquared/core/command/Visit.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/command/WE_Anywhere.java b/Core/src/main/java/com/plotsquared/core/command/WE_Anywhere.java index 50cda457a..275337555 100644 --- a/Core/src/main/java/com/plotsquared/core/command/WE_Anywhere.java +++ b/Core/src/main/java/com/plotsquared/core/command/WE_Anywhere.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/components/ComponentCommand.java b/Core/src/main/java/com/plotsquared/core/components/ComponentCommand.java index 8c158c417..ab7b37184 100644 --- a/Core/src/main/java/com/plotsquared/core/components/ComponentCommand.java +++ b/Core/src/main/java/com/plotsquared/core/components/ComponentCommand.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/components/ComponentPreset.java b/Core/src/main/java/com/plotsquared/core/components/ComponentPreset.java index 98150cc58..5dd759dbf 100644 --- a/Core/src/main/java/com/plotsquared/core/components/ComponentPreset.java +++ b/Core/src/main/java/com/plotsquared/core/components/ComponentPreset.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java b/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java index fb10eff9b..6904af610 100644 --- a/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java +++ b/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Caption.java b/Core/src/main/java/com/plotsquared/core/configuration/Caption.java index bb9cf098f..bd39c5ee9 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Caption.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Caption.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/CaptionUtility.java b/Core/src/main/java/com/plotsquared/core/configuration/CaptionUtility.java index 3180f62b4..94e7a4e47 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/CaptionUtility.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/CaptionUtility.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Captions.java b/Core/src/main/java/com/plotsquared/core/configuration/Captions.java index a9f264c2b..cac3ec09f 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Captions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Captions.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/ChatFormatter.java b/Core/src/main/java/com/plotsquared/core/configuration/ChatFormatter.java index e873d1c41..35c87767d 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/ChatFormatter.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/ChatFormatter.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Config.java b/Core/src/main/java/com/plotsquared/core/configuration/Config.java index 701cca773..19dce1e5a 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Config.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Config.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Configuration.java b/Core/src/main/java/com/plotsquared/core/configuration/Configuration.java index 0e17c3cfb..dcc18c4bc 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Configuration.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Configuration.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationNode.java b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationNode.java index cd3d524a8..0d5162019 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationNode.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationNode.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationOptions.java b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationOptions.java index 293af2257..ea43ffd4a 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationOptions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationOptions.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationSection.java b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationSection.java index ddd14735e..e69938320 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationSection.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationSection.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationUtil.java b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationUtil.java index db03b73a0..5797ef61f 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationUtil.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/InvalidConfigurationException.java b/Core/src/main/java/com/plotsquared/core/configuration/InvalidConfigurationException.java index 03c7353bb..7d9e43af1 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/InvalidConfigurationException.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/InvalidConfigurationException.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfiguration.java b/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfiguration.java index 88b8433ba..172453aee 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfiguration.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfiguration.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfigurationOptions.java b/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfigurationOptions.java index 961c72586..59f45c811 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfigurationOptions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfigurationOptions.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/MemorySection.java b/Core/src/main/java/com/plotsquared/core/configuration/MemorySection.java index 580730998..b2e3c4f38 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/MemorySection.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/MemorySection.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/PlotSquaredChatFormatter.java b/Core/src/main/java/com/plotsquared/core/configuration/PlotSquaredChatFormatter.java index fe142f0fb..f18b95ed3 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/PlotSquaredChatFormatter.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/PlotSquaredChatFormatter.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -35,7 +35,7 @@ public class PlotSquaredChatFormatter implements ChatFormatter { @Override public void format(final ChatContext context) { if (context.isRawOutput()) { context.setMessage( - context.getMessage().replace('&', '\u2020').replace('\u00A7', '\u2030')); + context.getMessage().replace('&', '\u2021').replace('\u00A7', '\u2030')); } if (context.getArgs().length == 0) { return; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java index 9e98808c2..c5efe94df 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/StaticCaption.java b/Core/src/main/java/com/plotsquared/core/configuration/StaticCaption.java index 403cc4c88..792bd26d1 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/StaticCaption.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/StaticCaption.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Storage.java b/Core/src/main/java/com/plotsquared/core/configuration/Storage.java index 44a0be29b..fa3f14c92 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Storage.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Storage.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfiguration.java b/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfiguration.java index cc7475370..9576ac55a 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfiguration.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfiguration.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfigurationOptions.java b/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfigurationOptions.java index d92ca9e16..0abe92c31 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfigurationOptions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfigurationOptions.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfiguration.java b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfiguration.java index f57cc56f8..4f4591f77 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfiguration.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfiguration.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfigurationOptions.java b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfigurationOptions.java index ed826e81a..377ee8c4f 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfigurationOptions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfigurationOptions.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConstructor.java b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConstructor.java index 6dea3c19b..78a38b70a 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConstructor.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConstructor.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlRepresenter.java b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlRepresenter.java index b3cb59e88..bbbe414aa 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlRepresenter.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlRepresenter.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerializable.java b/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerializable.java index b66c4a5a0..fcccf75bd 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerializable.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerializable.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerialization.java b/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerialization.java index c6d034b47..205b53118 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerialization.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerialization.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/serialization/DelegateDeserialization.java b/Core/src/main/java/com/plotsquared/core/configuration/serialization/DelegateDeserialization.java index 1cace0091..29de03887 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/serialization/DelegateDeserialization.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/serialization/DelegateDeserialization.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/configuration/serialization/SerializableAs.java b/Core/src/main/java/com/plotsquared/core/configuration/serialization/SerializableAs.java index 06c4d93fd..e380246a9 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/serialization/SerializableAs.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/serialization/SerializableAs.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/database/AbstractDB.java b/Core/src/main/java/com/plotsquared/core/database/AbstractDB.java index 4f3beccc2..29be773a3 100644 --- a/Core/src/main/java/com/plotsquared/core/database/AbstractDB.java +++ b/Core/src/main/java/com/plotsquared/core/database/AbstractDB.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/database/DBFunc.java b/Core/src/main/java/com/plotsquared/core/database/DBFunc.java index 2f12b2db6..d1fc226bd 100644 --- a/Core/src/main/java/com/plotsquared/core/database/DBFunc.java +++ b/Core/src/main/java/com/plotsquared/core/database/DBFunc.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/database/Database.java b/Core/src/main/java/com/plotsquared/core/database/Database.java index e76a137fd..227368f95 100644 --- a/Core/src/main/java/com/plotsquared/core/database/Database.java +++ b/Core/src/main/java/com/plotsquared/core/database/Database.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/database/MySQL.java b/Core/src/main/java/com/plotsquared/core/database/MySQL.java index 94624fd2c..98a04d336 100644 --- a/Core/src/main/java/com/plotsquared/core/database/MySQL.java +++ b/Core/src/main/java/com/plotsquared/core/database/MySQL.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/database/SQLManager.java b/Core/src/main/java/com/plotsquared/core/database/SQLManager.java index 6bb62e965..5cb344889 100644 --- a/Core/src/main/java/com/plotsquared/core/database/SQLManager.java +++ b/Core/src/main/java/com/plotsquared/core/database/SQLManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/database/SQLite.java b/Core/src/main/java/com/plotsquared/core/database/SQLite.java index 501033184..b311414a1 100644 --- a/Core/src/main/java/com/plotsquared/core/database/SQLite.java +++ b/Core/src/main/java/com/plotsquared/core/database/SQLite.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/database/StmtMod.java b/Core/src/main/java/com/plotsquared/core/database/StmtMod.java index 679f94776..c192ab50a 100644 --- a/Core/src/main/java/com/plotsquared/core/database/StmtMod.java +++ b/Core/src/main/java/com/plotsquared/core/database/StmtMod.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/CancellablePlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/CancellablePlotEvent.java index 85ccd6d71..ffaec1fc1 100644 --- a/Core/src/main/java/com/plotsquared/core/events/CancellablePlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/CancellablePlotEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerAutoPlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerAutoPlotEvent.java index 7bb935791..12d44ff47 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerAutoPlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerAutoPlotEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerClaimPlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerClaimPlotEvent.java index 6901a54ba..a6f4f7175 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerClaimPlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerClaimPlotEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerEnterPlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerEnterPlotEvent.java index 568809513..53974fc72 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerEnterPlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerEnterPlotEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerLeavePlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerLeavePlotEvent.java index 9a4366450..5cad08d14 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerLeavePlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerLeavePlotEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotDeniedEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotDeniedEvent.java index f3458a615..a8e36e7ad 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotDeniedEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotDeniedEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotHelperEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotHelperEvent.java index 55a606381..bbcc651a4 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotHelperEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotHelperEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotTrustedEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotTrustedEvent.java index 85db4a32d..ff5878167 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotTrustedEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotTrustedEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerTeleportToPlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerTeleportToPlotEvent.java index 8f6d40903..ad981d673 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerTeleportToPlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerTeleportToPlotEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotAutoMergeEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotAutoMergeEvent.java index a84bc5de0..56f196636 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotAutoMergeEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotAutoMergeEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotChangeOwnerEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotChangeOwnerEvent.java index 0e1f5eb48..320ecbf1e 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotChangeOwnerEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotChangeOwnerEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotClearEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotClearEvent.java index b4fedfab6..b3fb4961c 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotClearEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotClearEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotComponentSetEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotComponentSetEvent.java index 32f5a09a5..9354e1538 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotComponentSetEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotComponentSetEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotDeleteEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotDeleteEvent.java index f2b7f70a8..92a386c17 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotDeleteEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotDeleteEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotDoneEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotDoneEvent.java index fbabf335c..736469bb3 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotDoneEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotDoneEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotEvent.java index 0b9e8801c..973bc5dd5 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotFlagAddEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotFlagAddEvent.java index 4dc1e4f86..bd014f24e 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotFlagAddEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotFlagAddEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotFlagEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotFlagEvent.java index 54863d15c..1b83a0ef4 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotFlagEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotFlagEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotFlagRemoveEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotFlagRemoveEvent.java index fbab48326..fec23a028 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotFlagRemoveEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotFlagRemoveEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotMergeEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotMergeEvent.java index 71bc2eaad..05ee4062c 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotMergeEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotMergeEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotPlayerEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotPlayerEvent.java index 5e591fb57..7c90d9520 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotPlayerEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotPlayerEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotRateEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotRateEvent.java index 7bd8ec31e..d9fb2a5dc 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotRateEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotRateEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotUnlinkEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotUnlinkEvent.java index 45299868f..06a2bd1d7 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotUnlinkEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotUnlinkEvent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/Result.java b/Core/src/main/java/com/plotsquared/core/events/Result.java index 1a5f9efbc..9cf345291 100644 --- a/Core/src/main/java/com/plotsquared/core/events/Result.java +++ b/Core/src/main/java/com/plotsquared/core/events/Result.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/events/TeleportCause.java b/Core/src/main/java/com/plotsquared/core/events/TeleportCause.java index 576bd90f7..d74227fab 100644 --- a/Core/src/main/java/com/plotsquared/core/events/TeleportCause.java +++ b/Core/src/main/java/com/plotsquared/core/events/TeleportCause.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/AugmentedUtils.java b/Core/src/main/java/com/plotsquared/core/generator/AugmentedUtils.java index 146d42b82..2d5ba24e1 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/AugmentedUtils.java +++ b/Core/src/main/java/com/plotsquared/core/generator/AugmentedUtils.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManager.java index be60498bd..1117116ab 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManagerComponent.java b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManagerComponent.java index 3856546a5..779449e94 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManagerComponent.java +++ b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManagerComponent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java index 8a0e41c02..bc73455ee 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/GeneratorWrapper.java b/Core/src/main/java/com/plotsquared/core/generator/GeneratorWrapper.java index 04dbce965..977440606 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/GeneratorWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/generator/GeneratorWrapper.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/GridPlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/GridPlotManager.java index 37bddcd50..d97e625cb 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/GridPlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/GridPlotManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/GridPlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/GridPlotWorld.java index 8b753b170..400573dfd 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/GridPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/GridPlotWorld.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/HybridGen.java b/Core/src/main/java/com/plotsquared/core/generator/HybridGen.java index c45931d81..2beb3d2b5 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridGen.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridGen.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java index da4fa74b9..831d49239 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotWorld.java index a561a9ac3..d1255c7bf 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotWorld.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/HybridUtils.java b/Core/src/main/java/com/plotsquared/core/generator/HybridUtils.java index 539e9e1cd..85ce75ac9 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridUtils.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridUtils.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/IndependentPlotGenerator.java b/Core/src/main/java/com/plotsquared/core/generator/IndependentPlotGenerator.java index 324f6d8d4..690370ed1 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/IndependentPlotGenerator.java +++ b/Core/src/main/java/com/plotsquared/core/generator/IndependentPlotGenerator.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/SingleWorldGenerator.java b/Core/src/main/java/com/plotsquared/core/generator/SingleWorldGenerator.java index eb2037def..5b9d0f5da 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/SingleWorldGenerator.java +++ b/Core/src/main/java/com/plotsquared/core/generator/SingleWorldGenerator.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java index 9dbd2c611..8566497c7 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotWorld.java index 026b13ddc..664b1647f 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotWorld.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/listener/ExtentWrapper.java b/Core/src/main/java/com/plotsquared/core/listener/ExtentWrapper.java index 33ea9c9d2..7aff68801 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/ExtentWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/listener/ExtentWrapper.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/listener/PlayerBlockEventType.java b/Core/src/main/java/com/plotsquared/core/listener/PlayerBlockEventType.java index 4ed318d7d..327297104 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/PlayerBlockEventType.java +++ b/Core/src/main/java/com/plotsquared/core/listener/PlayerBlockEventType.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/listener/PlotListener.java b/Core/src/main/java/com/plotsquared/core/listener/PlotListener.java index bd99fe197..8d95121ff 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/PlotListener.java +++ b/Core/src/main/java/com/plotsquared/core/listener/PlotListener.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/listener/ProcessedWEExtent.java b/Core/src/main/java/com/plotsquared/core/listener/ProcessedWEExtent.java index 0df6c3a3c..5ea154a6d 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/ProcessedWEExtent.java +++ b/Core/src/main/java/com/plotsquared/core/listener/ProcessedWEExtent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/listener/WEExtent.java b/Core/src/main/java/com/plotsquared/core/listener/WEExtent.java index 7909bd2f4..9c36d2a8f 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/WEExtent.java +++ b/Core/src/main/java/com/plotsquared/core/listener/WEExtent.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/listener/WESubscriber.java b/Core/src/main/java/com/plotsquared/core/listener/WESubscriber.java index c9d883f55..9dc3b8044 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/WESubscriber.java +++ b/Core/src/main/java/com/plotsquared/core/listener/WESubscriber.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/location/BlockLoc.java b/Core/src/main/java/com/plotsquared/core/location/BlockLoc.java index 0fd25c48b..1ee71cd60 100644 --- a/Core/src/main/java/com/plotsquared/core/location/BlockLoc.java +++ b/Core/src/main/java/com/plotsquared/core/location/BlockLoc.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/location/ChunkWrapper.java b/Core/src/main/java/com/plotsquared/core/location/ChunkWrapper.java index 5f97ade75..a409257fc 100644 --- a/Core/src/main/java/com/plotsquared/core/location/ChunkWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/location/ChunkWrapper.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/location/Direction.java b/Core/src/main/java/com/plotsquared/core/location/Direction.java index 406d3aa8c..0f976caf9 100644 --- a/Core/src/main/java/com/plotsquared/core/location/Direction.java +++ b/Core/src/main/java/com/plotsquared/core/location/Direction.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/location/Location.java b/Core/src/main/java/com/plotsquared/core/location/Location.java index 08db98a19..7147a3039 100644 --- a/Core/src/main/java/com/plotsquared/core/location/Location.java +++ b/Core/src/main/java/com/plotsquared/core/location/Location.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java b/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java index 6181f9fad..2ac2c92f7 100644 --- a/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java +++ b/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/player/ConsolePlayer.java b/Core/src/main/java/com/plotsquared/core/player/ConsolePlayer.java index 10a27c0fd..cbd301b7c 100644 --- a/Core/src/main/java/com/plotsquared/core/player/ConsolePlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/ConsolePlayer.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java b/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java index f48079f67..ee1695074 100644 --- a/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java b/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java index 95fba9a60..73906b19c 100644 --- a/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java b/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java index b5a6250ab..fb607fb5e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java +++ b/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/Plot.java b/Core/src/main/java/com/plotsquared/core/plot/Plot.java index ac1766e93..17b09cce7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/Plot.java +++ b/Core/src/main/java/com/plotsquared/core/plot/Plot.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java b/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java index 0076b27e2..3fd473681 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotAreaTerrainType.java b/Core/src/main/java/com/plotsquared/core/plot/PlotAreaTerrainType.java index 1008f0104..32caf73b7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotAreaTerrainType.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotAreaTerrainType.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotAreaType.java b/Core/src/main/java/com/plotsquared/core/plot/PlotAreaType.java index 9ed4cb0f0..842029383 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotAreaType.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotAreaType.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java b/Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java index c9de0e90c..16cbf00ea 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotFilter.java b/Core/src/main/java/com/plotsquared/core/plot/PlotFilter.java index 9319c048e..917c7b9a9 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotFilter.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotFilter.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java b/Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java index 052faada6..b0c05d192 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotId.java b/Core/src/main/java/com/plotsquared/core/plot/PlotId.java index 41016da1f..732787a13 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotId.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotId.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java b/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java index 88f9c100c..398ae68b5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java b/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java index a5c071476..a6c479a5d 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotManager.java b/Core/src/main/java/com/plotsquared/core/plot/PlotManager.java index 236eeee0f..371ae5ae4 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotSettings.java b/Core/src/main/java/com/plotsquared/core/plot/PlotSettings.java index d873d6800..9c4b85879 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotSettings.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotSettings.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java b/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java index 812816331..f93d7970b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java b/Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java index ed7b854c2..dbb2e15cc 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/Rating.java b/Core/src/main/java/com/plotsquared/core/plot/Rating.java index b6ccfd0a3..32ee16e84 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/Rating.java +++ b/Core/src/main/java/com/plotsquared/core/plot/Rating.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/SetupObject.java b/Core/src/main/java/com/plotsquared/core/plot/SetupObject.java index bfca8fe5e..078e9cbf3 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/SetupObject.java +++ b/Core/src/main/java/com/plotsquared/core/plot/SetupObject.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/CommentInbox.java b/Core/src/main/java/com/plotsquared/core/plot/comment/CommentInbox.java index a1caeec21..8c50fda25 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/CommentInbox.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/CommentInbox.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/CommentManager.java b/Core/src/main/java/com/plotsquared/core/plot/comment/CommentManager.java index 141d729c7..ecc7cd68c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/CommentManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/CommentManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxOwner.java b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxOwner.java index bb7cf1e97..a8a2f9cc1 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxOwner.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxOwner.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxPublic.java b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxPublic.java index 9b0d69e29..fb8f9afea 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxPublic.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxPublic.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxReport.java b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxReport.java index 50aed9597..a13434f23 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxReport.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxReport.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/PlotComment.java b/Core/src/main/java/com/plotsquared/core/plot/comment/PlotComment.java index d38f4d8c8..3a99d8a8e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/PlotComment.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/PlotComment.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpireManager.java b/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpireManager.java index 532134536..95ab3fd80 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpireManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpireManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpiryTask.java b/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpiryTask.java index a7cd1b86b..9edbbeb8e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpiryTask.java +++ b/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpiryTask.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/expiration/PlotAnalysis.java b/Core/src/main/java/com/plotsquared/core/plot/expiration/PlotAnalysis.java index f7d326411..aef3596e4 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/expiration/PlotAnalysis.java +++ b/Core/src/main/java/com/plotsquared/core/plot/expiration/PlotAnalysis.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/FlagContainer.java b/Core/src/main/java/com/plotsquared/core/plot/flag/FlagContainer.java index e0bb40fb8..196972653 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/FlagContainer.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/FlagContainer.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/FlagParseException.java b/Core/src/main/java/com/plotsquared/core/plot/flag/FlagParseException.java index 5f072dfe3..b955b04d0 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/FlagParseException.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/FlagParseException.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java b/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java index d8bccc2d1..83d90e5af 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/InternalFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/InternalFlag.java index a7c841bac..fc11ae3eb 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/InternalFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/InternalFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/PlotFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/PlotFlag.java index af3306b25..8502609d5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/PlotFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/PlotFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnalysisFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnalysisFlag.java index 133f56df9..0f65844e8 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnalysisFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnalysisFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalAttackFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalAttackFlag.java index 1ae0abc12..f87a44a32 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalAttackFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalAttackFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalCapFlag.java index 228ea94aa..143554ba3 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalCapFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalInteractFlag.java index f19a479d3..04e542de9 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalInteractFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockBurnFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockBurnFlag.java index ac50b91b3..ad4b28d8a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockBurnFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockBurnFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockIgnitionFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockIgnitionFlag.java index 4a2b7e205..81e8709ed 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockIgnitionFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockIgnitionFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockedCmdsFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockedCmdsFlag.java index d5b3eeca6..c2131a9b0 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockedCmdsFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockedCmdsFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BreakFlag.java index 5acf7d489..11beab874 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BreakFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java index 81da5294a..f8bd4889a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/CoralDryFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/CoralDryFlag.java index 84e98f9d6..d5619a76e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/CoralDryFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/CoralDryFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyExitFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyExitFlag.java index 17fe9f0e8..c06b177be 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyExitFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyExitFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyTeleportFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyTeleportFlag.java index ba923c396..1976ccfa5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyTeleportFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyTeleportFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DescriptionFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DescriptionFlag.java index 7afb264f4..a9c8761cb 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DescriptionFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DescriptionFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DeviceInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DeviceInteractFlag.java index f43e1e27a..7835ceaee 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DeviceInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DeviceInteractFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DisablePhysicsFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DisablePhysicsFlag.java index f1d952260..ee7edf77c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DisablePhysicsFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DisablePhysicsFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DoneFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DoneFlag.java index 390ae4ba7..f74ea368b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DoneFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DoneFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DropProtectionFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DropProtectionFlag.java index a210af66e..7331d255c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DropProtectionFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DropProtectionFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/EntityCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/EntityCapFlag.java index e20e2dded..1dfd0b15f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/EntityCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/EntityCapFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ExplosionFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ExplosionFlag.java index 0f1f04a54..010a246e2 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ExplosionFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ExplosionFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FarewellFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FarewellFlag.java index 625f41cb8..a9e1d2357 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FarewellFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FarewellFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FeedFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FeedFlag.java index 11a0cac4a..3f35ea44e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FeedFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FeedFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FlyFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FlyFlag.java index ffe72a7b4..8a77a8880 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FlyFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FlyFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ForcefieldFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ForcefieldFlag.java index f8c985238..02274114d 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ForcefieldFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ForcefieldFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GamemodeFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GamemodeFlag.java index 60fdb4a0a..10eae412c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GamemodeFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GamemodeFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GrassGrowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GrassGrowFlag.java index 7cb823667..ac4729edc 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GrassGrowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GrassGrowFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GreetingFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GreetingFlag.java index 0097defa8..6fe2607f6 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GreetingFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GreetingFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GuestGamemodeFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GuestGamemodeFlag.java index 8b320200e..46e5e4a6a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GuestGamemodeFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GuestGamemodeFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingBreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingBreakFlag.java index f7a07a28a..668a2e09b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingBreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingBreakFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingPlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingPlaceFlag.java index 14923a319..dfd8857c7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingPlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingPlaceFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HealFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HealFlag.java index 90e5fbabb..9df152537 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HealFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HealFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HideInfoFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HideInfoFlag.java index d382cac8f..94590bc3b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HideInfoFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HideInfoFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileAttackFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileAttackFlag.java index 9ec805814..c993db35e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileAttackFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileAttackFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileCapFlag.java index 017e3736a..e67f348ae 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileCapFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileInteractFlag.java index 96ce742b9..71c0c3296 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileInteractFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceFormFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceFormFlag.java index a0f54097e..84b8981dc 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceFormFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceFormFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceMeltFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceMeltFlag.java index 0c1bf93a6..da003060b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceMeltFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceMeltFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InstabreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InstabreakFlag.java index 7c87fcff4..c53df91c0 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InstabreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InstabreakFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InvincibleFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InvincibleFlag.java index b19e0d393..cf62704a1 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InvincibleFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InvincibleFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ItemDropFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ItemDropFlag.java index 1c71be3eb..27a3cf4d7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ItemDropFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ItemDropFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepFlag.java index ce23f2510..989882cfd 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepInventoryFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepInventoryFlag.java index 872c3157d..9a7b307d3 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepInventoryFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepInventoryFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KelpGrowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KelpGrowFlag.java index 495db4160..70e7fff91 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KelpGrowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KelpGrowFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/LiquidFlowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/LiquidFlowFlag.java index c200ed6a9..4f74a6ae0 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/LiquidFlowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/LiquidFlowFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscBreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscBreakFlag.java index 17bc797c9..fe84b62e2 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscBreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscBreakFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscCapFlag.java index 2291d6343..baccfccb1 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscCapFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscInteractFlag.java index a70191a9d..5d3d23a2c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscInteractFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscPlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscPlaceFlag.java index 8579d33df..e05ac5def 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscPlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscPlaceFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobBreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobBreakFlag.java index fd8db8c69..895be82f5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobBreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobBreakFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobCapFlag.java index f05f2699a..ce103c4bd 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobCapFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobPlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobPlaceFlag.java index b0f85914c..bf764c40a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobPlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobPlaceFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MusicFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MusicFlag.java index 175c22c1e..8ea22b582 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MusicFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MusicFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MycelGrowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MycelGrowFlag.java index 42c69c0da..93b3bfeeb 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MycelGrowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MycelGrowFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NoWorldeditFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NoWorldeditFlag.java index 926ddbf81..8aeb31c39 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NoWorldeditFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NoWorldeditFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyEnterFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyEnterFlag.java index 55deec66d..2e8cd2c49 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyEnterFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyEnterFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyLeaveFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyLeaveFlag.java index 521401f82..8cbf8173a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyLeaveFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyLeaveFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlaceFlag.java index ae5fb6e2a..fab528d91 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlaceFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlayerInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlayerInteractFlag.java index 3743826a5..bed595e09 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlayerInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlayerInteractFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PreventCreativeCopyFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PreventCreativeCopyFlag.java index f86e84ecb..5d449e611 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PreventCreativeCopyFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PreventCreativeCopyFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PriceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PriceFlag.java index a2250247d..5491a8c17 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PriceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PriceFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PveFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PveFlag.java index 9d46f63fb..d2d2cea85 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PveFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PveFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PvpFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PvpFlag.java index 3c07c9d1c..f82d7bc77 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PvpFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PvpFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/RedstoneFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/RedstoneFlag.java index e46df3616..4cadd3a6e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/RedstoneFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/RedstoneFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ServerPlotFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ServerPlotFlag.java index db05dcdfa..83b85732c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ServerPlotFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ServerPlotFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java index 33f21f1e6..dd5ee9a63 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowMeltFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowMeltFlag.java index 7a948ed39..8515e41a2 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowMeltFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowMeltFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SoilDryFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SoilDryFlag.java index 3096850bf..7204bf3b8 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SoilDryFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SoilDryFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedAttackFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedAttackFlag.java index e2b3ba806..63e2cffaf 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedAttackFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedAttackFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedInteractFlag.java index c6c555501..1c04bf745 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedInteractFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TimeFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TimeFlag.java index 7b21b554b..1eecc1df0 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TimeFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TimeFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TitlesFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TitlesFlag.java index 0b160dae5..e0e4a3789 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TitlesFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TitlesFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UntrustedVisitFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UntrustedVisitFlag.java index a85fdacf0..5b360d3a1 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UntrustedVisitFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UntrustedVisitFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UseFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UseFlag.java index 96d1630c8..d35bce5f0 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UseFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UseFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleBreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleBreakFlag.java index bf77b18a7..9460cb6d7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleBreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleBreakFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleCapFlag.java index 3a428bb8c..24ee42696 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleCapFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehiclePlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehiclePlaceFlag.java index 5bff06205..6eebb1738 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehiclePlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehiclePlaceFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleUseFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleUseFlag.java index b4386791b..3e5d0b2f6 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleUseFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleUseFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VillagerInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VillagerInteractFlag.java index 2bcf6a2ed..90b15645b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VillagerInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VillagerInteractFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VineGrowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VineGrowFlag.java index 5f90a069a..6ba1ae15d 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VineGrowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VineGrowFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/WeatherFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/WeatherFlag.java index 7b7ea495d..5c62a2daa 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/WeatherFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/WeatherFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeListFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeListFlag.java index 765e00f96..bdb4ee1e4 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeListFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeListFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeWrapper.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeWrapper.java index d29140672..5e17f153b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeWrapper.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BooleanFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BooleanFlag.java index 578204ff6..0948a64b7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BooleanFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BooleanFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/DoubleFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/DoubleFlag.java index a7a9b88fd..210955917 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/DoubleFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/DoubleFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/IntegerFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/IntegerFlag.java index efae07579..77941b8cd 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/IntegerFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/IntegerFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/ListFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/ListFlag.java index 746a769aa..7235a1359 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/ListFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/ListFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/LongFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/LongFlag.java index c684457a0..b2f3e1c0a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/LongFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/LongFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/NonNegativeIntegerFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/NonNegativeIntegerFlag.java index 699e2f018..42a6e6006 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/NonNegativeIntegerFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/NonNegativeIntegerFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/NumberFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/NumberFlag.java index 43068a85a..77bda130f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/NumberFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/NumberFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/TimedFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/TimedFlag.java index d00504989..45c1be5fb 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/TimedFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/TimedFlag.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/message/PlainChatManager.java b/Core/src/main/java/com/plotsquared/core/plot/message/PlainChatManager.java index 00c12c899..cd4fcf4f1 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/message/PlainChatManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/message/PlainChatManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/message/PlotMessage.java b/Core/src/main/java/com/plotsquared/core/plot/message/PlotMessage.java index 95ae8e953..38f65caef 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/message/PlotMessage.java +++ b/Core/src/main/java/com/plotsquared/core/plot/message/PlotMessage.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/schematic/PlotItem.java b/Core/src/main/java/com/plotsquared/core/plot/schematic/PlotItem.java index c8e614c71..eb5f31e92 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/schematic/PlotItem.java +++ b/Core/src/main/java/com/plotsquared/core/plot/schematic/PlotItem.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/schematic/Schematic.java b/Core/src/main/java/com/plotsquared/core/plot/schematic/Schematic.java index 8f08b91cf..c1cb7709f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/schematic/Schematic.java +++ b/Core/src/main/java/com/plotsquared/core/plot/schematic/Schematic.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/schematic/StoredEntity.java b/Core/src/main/java/com/plotsquared/core/plot/schematic/StoredEntity.java index 1892ab4d4..b917bee42 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/schematic/StoredEntity.java +++ b/Core/src/main/java/com/plotsquared/core/plot/schematic/StoredEntity.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/DefaultPlotAreaManager.java b/Core/src/main/java/com/plotsquared/core/plot/world/DefaultPlotAreaManager.java index 9ce0b1623..152cab050 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/DefaultPlotAreaManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/DefaultPlotAreaManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/PlotAreaManager.java b/Core/src/main/java/com/plotsquared/core/plot/world/PlotAreaManager.java index 34033cb2b..04b63b805 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/PlotAreaManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/PlotAreaManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/ScatteredPlotWorld.java b/Core/src/main/java/com/plotsquared/core/plot/world/ScatteredPlotWorld.java index 40707a8e5..1627b1940 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/ScatteredPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/ScatteredPlotWorld.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlot.java b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlot.java index a57fe7d3d..b97354d8f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlot.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlot.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotArea.java b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotArea.java index 5b0667f3a..092ba9343 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotArea.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotArea.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotAreaManager.java b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotAreaManager.java index eb512cd50..0c644b0d7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotAreaManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotAreaManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java index 0e014baba..43f1bc7ff 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/StandardPlotWorld.java b/Core/src/main/java/com/plotsquared/core/plot/world/StandardPlotWorld.java index 162cf0e9f..dccd50ffe 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/StandardPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/StandardPlotWorld.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/queue/AreaBoundDelegateLocalBlockQueue.java b/Core/src/main/java/com/plotsquared/core/queue/AreaBoundDelegateLocalBlockQueue.java index 7ac07db57..b593542f9 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/AreaBoundDelegateLocalBlockQueue.java +++ b/Core/src/main/java/com/plotsquared/core/queue/AreaBoundDelegateLocalBlockQueue.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/queue/BasicLocalBlockQueue.java b/Core/src/main/java/com/plotsquared/core/queue/BasicLocalBlockQueue.java index d63403975..0867e418a 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/BasicLocalBlockQueue.java +++ b/Core/src/main/java/com/plotsquared/core/queue/BasicLocalBlockQueue.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/queue/ChunkBlockQueue.java b/Core/src/main/java/com/plotsquared/core/queue/ChunkBlockQueue.java index a8e0d1c1a..dd430a1b4 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/ChunkBlockQueue.java +++ b/Core/src/main/java/com/plotsquared/core/queue/ChunkBlockQueue.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/queue/DelegateLocalBlockQueue.java b/Core/src/main/java/com/plotsquared/core/queue/DelegateLocalBlockQueue.java index 22176671c..79dd09e5c 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/DelegateLocalBlockQueue.java +++ b/Core/src/main/java/com/plotsquared/core/queue/DelegateLocalBlockQueue.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/queue/GlobalBlockQueue.java b/Core/src/main/java/com/plotsquared/core/queue/GlobalBlockQueue.java index 3b63a94c0..d3414b42f 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/GlobalBlockQueue.java +++ b/Core/src/main/java/com/plotsquared/core/queue/GlobalBlockQueue.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/queue/LocalBlockQueue.java b/Core/src/main/java/com/plotsquared/core/queue/LocalBlockQueue.java index 76fa5e28a..dfbbbd583 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/LocalBlockQueue.java +++ b/Core/src/main/java/com/plotsquared/core/queue/LocalBlockQueue.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateLocalBlockQueue.java b/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateLocalBlockQueue.java index cea58a95d..7b758c538 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateLocalBlockQueue.java +++ b/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateLocalBlockQueue.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/queue/OffsetLocalBlockQueue.java b/Core/src/main/java/com/plotsquared/core/queue/OffsetLocalBlockQueue.java index 06233277d..830105883 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/OffsetLocalBlockQueue.java +++ b/Core/src/main/java/com/plotsquared/core/queue/OffsetLocalBlockQueue.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/queue/QueueProvider.java b/Core/src/main/java/com/plotsquared/core/queue/QueueProvider.java index 2fee2fa99..5c3c9d98a 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/QueueProvider.java +++ b/Core/src/main/java/com/plotsquared/core/queue/QueueProvider.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/queue/ScopedLocalBlockQueue.java b/Core/src/main/java/com/plotsquared/core/queue/ScopedLocalBlockQueue.java index 0c85301c5..5144d7ac7 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/ScopedLocalBlockQueue.java +++ b/Core/src/main/java/com/plotsquared/core/queue/ScopedLocalBlockQueue.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java b/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java index f2ff58dd2..e63d326e6 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java +++ b/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/setup/PlotAreaBuilder.java b/Core/src/main/java/com/plotsquared/core/setup/PlotAreaBuilder.java index d59e2d8f0..8304760da 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/PlotAreaBuilder.java +++ b/Core/src/main/java/com/plotsquared/core/setup/PlotAreaBuilder.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/setup/SettingsNodeStep.java b/Core/src/main/java/com/plotsquared/core/setup/SettingsNodeStep.java index d216f067c..ad7c362ab 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/SettingsNodeStep.java +++ b/Core/src/main/java/com/plotsquared/core/setup/SettingsNodeStep.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/setup/SettingsNodesWrapper.java b/Core/src/main/java/com/plotsquared/core/setup/SettingsNodesWrapper.java index 153ec7d86..cd1147dc8 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/SettingsNodesWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/setup/SettingsNodesWrapper.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/setup/SetupProcess.java b/Core/src/main/java/com/plotsquared/core/setup/SetupProcess.java index 7af19aefb..eada43ef2 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/SetupProcess.java +++ b/Core/src/main/java/com/plotsquared/core/setup/SetupProcess.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/setup/SetupStep.java b/Core/src/main/java/com/plotsquared/core/setup/SetupStep.java index 5befafc81..a1bd7f1d3 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/SetupStep.java +++ b/Core/src/main/java/com/plotsquared/core/setup/SetupStep.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/BlockUtil.java b/Core/src/main/java/com/plotsquared/core/util/BlockUtil.java index 2eef1e3f6..dca995ca5 100644 --- a/Core/src/main/java/com/plotsquared/core/util/BlockUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/BlockUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/ChatManager.java b/Core/src/main/java/com/plotsquared/core/util/ChatManager.java index 0398f6538..bb49a42c3 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ChatManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/ChatManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/ChunkManager.java b/Core/src/main/java/com/plotsquared/core/util/ChunkManager.java index 3e052737a..d2fb004ac 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ChunkManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/ChunkManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/ConsoleColors.java b/Core/src/main/java/com/plotsquared/core/util/ConsoleColors.java index deee70a24..820865a10 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ConsoleColors.java +++ b/Core/src/main/java/com/plotsquared/core/util/ConsoleColors.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/EconHandler.java b/Core/src/main/java/com/plotsquared/core/util/EconHandler.java index a593e0cb0..6d1c4559a 100644 --- a/Core/src/main/java/com/plotsquared/core/util/EconHandler.java +++ b/Core/src/main/java/com/plotsquared/core/util/EconHandler.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/EntityUtil.java b/Core/src/main/java/com/plotsquared/core/util/EntityUtil.java index de451de83..9a2bf1814 100644 --- a/Core/src/main/java/com/plotsquared/core/util/EntityUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/EntityUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java b/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java index b495fb212..cf02d3ae3 100644 --- a/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java +++ b/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/Expression.java b/Core/src/main/java/com/plotsquared/core/util/Expression.java index 86bdeea2d..c1df0eed8 100644 --- a/Core/src/main/java/com/plotsquared/core/util/Expression.java +++ b/Core/src/main/java/com/plotsquared/core/util/Expression.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/FileBytes.java b/Core/src/main/java/com/plotsquared/core/util/FileBytes.java index e582aa7b7..915c8bc3b 100644 --- a/Core/src/main/java/com/plotsquared/core/util/FileBytes.java +++ b/Core/src/main/java/com/plotsquared/core/util/FileBytes.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java b/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java index c2d12ae13..d65463692 100644 --- a/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/ItemUtil.java b/Core/src/main/java/com/plotsquared/core/util/ItemUtil.java index f0594b4d7..ece3b536c 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ItemUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/ItemUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/LazyBlock.java b/Core/src/main/java/com/plotsquared/core/util/LazyBlock.java index a8a8970f8..1af434931 100644 --- a/Core/src/main/java/com/plotsquared/core/util/LazyBlock.java +++ b/Core/src/main/java/com/plotsquared/core/util/LazyBlock.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/LazyResult.java b/Core/src/main/java/com/plotsquared/core/util/LazyResult.java index ae2be3a19..cda827523 100644 --- a/Core/src/main/java/com/plotsquared/core/util/LazyResult.java +++ b/Core/src/main/java/com/plotsquared/core/util/LazyResult.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/LegacyConverter.java b/Core/src/main/java/com/plotsquared/core/util/LegacyConverter.java index d329a8e23..824198dfc 100644 --- a/Core/src/main/java/com/plotsquared/core/util/LegacyConverter.java +++ b/Core/src/main/java/com/plotsquared/core/util/LegacyConverter.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/MainUtil.java b/Core/src/main/java/com/plotsquared/core/util/MainUtil.java index a56e3e1b2..3bca56eec 100644 --- a/Core/src/main/java/com/plotsquared/core/util/MainUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/MainUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/MathMan.java b/Core/src/main/java/com/plotsquared/core/util/MathMan.java index 3373e4ed7..29f828065 100644 --- a/Core/src/main/java/com/plotsquared/core/util/MathMan.java +++ b/Core/src/main/java/com/plotsquared/core/util/MathMan.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/OperationUtil.java b/Core/src/main/java/com/plotsquared/core/util/OperationUtil.java index 37dc11d80..99fb49c31 100644 --- a/Core/src/main/java/com/plotsquared/core/util/OperationUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/OperationUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/PatternUtil.java b/Core/src/main/java/com/plotsquared/core/util/PatternUtil.java index c8d18c136..6c72aa072 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PatternUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/PatternUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/PermHandler.java b/Core/src/main/java/com/plotsquared/core/util/PermHandler.java index 1dec45fd4..fb6aa0e44 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PermHandler.java +++ b/Core/src/main/java/com/plotsquared/core/util/PermHandler.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/Permissions.java b/Core/src/main/java/com/plotsquared/core/util/Permissions.java index 34754e7c8..5cb5d7d46 100644 --- a/Core/src/main/java/com/plotsquared/core/util/Permissions.java +++ b/Core/src/main/java/com/plotsquared/core/util/Permissions.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/PlatformWorldManager.java b/Core/src/main/java/com/plotsquared/core/util/PlatformWorldManager.java index c304ff04c..edd0b3920 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PlatformWorldManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/PlatformWorldManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/PlayerManager.java b/Core/src/main/java/com/plotsquared/core/util/PlayerManager.java index 8c4ec1bea..9e49b548c 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PlayerManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/PlayerManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/PlotAreaConverter.java b/Core/src/main/java/com/plotsquared/core/util/PlotAreaConverter.java index b80195c02..1ba849c51 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PlotAreaConverter.java +++ b/Core/src/main/java/com/plotsquared/core/util/PlotAreaConverter.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/PremiumVerification.java b/Core/src/main/java/com/plotsquared/core/util/PremiumVerification.java index 7fd78826d..8af2f629a 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PremiumVerification.java +++ b/Core/src/main/java/com/plotsquared/core/util/PremiumVerification.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/PseudoRandom.java b/Core/src/main/java/com/plotsquared/core/util/PseudoRandom.java index cb5a2d0c2..515351af7 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PseudoRandom.java +++ b/Core/src/main/java/com/plotsquared/core/util/PseudoRandom.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/ReflectionUtils.java b/Core/src/main/java/com/plotsquared/core/util/ReflectionUtils.java index afe86e83b..3730a94f7 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ReflectionUtils.java +++ b/Core/src/main/java/com/plotsquared/core/util/ReflectionUtils.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/RegExUtil.java b/Core/src/main/java/com/plotsquared/core/util/RegExUtil.java index 90f3e1350..f38a36caa 100644 --- a/Core/src/main/java/com/plotsquared/core/util/RegExUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/RegExUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/RegionManager.java b/Core/src/main/java/com/plotsquared/core/util/RegionManager.java index 1349e6c9a..fededa20d 100644 --- a/Core/src/main/java/com/plotsquared/core/util/RegionManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/RegionManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/RegionUtil.java b/Core/src/main/java/com/plotsquared/core/util/RegionUtil.java index 6c16c4a9e..903db6933 100644 --- a/Core/src/main/java/com/plotsquared/core/util/RegionUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/RegionUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/RuntimeExceptionRunnableVal.java b/Core/src/main/java/com/plotsquared/core/util/RuntimeExceptionRunnableVal.java index f66b384ed..b744d3ca6 100644 --- a/Core/src/main/java/com/plotsquared/core/util/RuntimeExceptionRunnableVal.java +++ b/Core/src/main/java/com/plotsquared/core/util/RuntimeExceptionRunnableVal.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java b/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java index 549755b39..60cd4df2f 100644 --- a/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java +++ b/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/SetupUtils.java b/Core/src/main/java/com/plotsquared/core/util/SetupUtils.java index cae6f2ae1..315f1728e 100644 --- a/Core/src/main/java/com/plotsquared/core/util/SetupUtils.java +++ b/Core/src/main/java/com/plotsquared/core/util/SetupUtils.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/StringComparison.java b/Core/src/main/java/com/plotsquared/core/util/StringComparison.java index 42af58b88..91470cbd1 100644 --- a/Core/src/main/java/com/plotsquared/core/util/StringComparison.java +++ b/Core/src/main/java/com/plotsquared/core/util/StringComparison.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/StringMan.java b/Core/src/main/java/com/plotsquared/core/util/StringMan.java index c5c215d67..b2f1085c5 100644 --- a/Core/src/main/java/com/plotsquared/core/util/StringMan.java +++ b/Core/src/main/java/com/plotsquared/core/util/StringMan.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/StringWrapper.java b/Core/src/main/java/com/plotsquared/core/util/StringWrapper.java index e2d048346..930cf618b 100644 --- a/Core/src/main/java/com/plotsquared/core/util/StringWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/util/StringWrapper.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/TabCompletions.java b/Core/src/main/java/com/plotsquared/core/util/TabCompletions.java index 077ac4563..6727aa45e 100644 --- a/Core/src/main/java/com/plotsquared/core/util/TabCompletions.java +++ b/Core/src/main/java/com/plotsquared/core/util/TabCompletions.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java b/Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java index c7c011e3d..d77571d3a 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java +++ b/Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/WEManager.java b/Core/src/main/java/com/plotsquared/core/util/WEManager.java index 21654e42b..1fb46fdd0 100644 --- a/Core/src/main/java/com/plotsquared/core/util/WEManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/WEManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/WorldUtil.java b/Core/src/main/java/com/plotsquared/core/util/WorldUtil.java index 4d733d5eb..987c226e0 100644 --- a/Core/src/main/java/com/plotsquared/core/util/WorldUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/WorldUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategories.java b/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategories.java index ae1a5c0cd..abe5c474a 100644 --- a/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategories.java +++ b/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategories.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategory.java b/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategory.java index 30236ed34..3e4cf461e 100644 --- a/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategory.java +++ b/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategory.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpMenu.java b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpMenu.java index 11defc7f0..cd2758a9d 100644 --- a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpMenu.java +++ b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpMenu.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpObject.java b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpObject.java index f33a1f519..d0cd11b48 100644 --- a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpObject.java +++ b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpObject.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpPage.java b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpPage.java index 610fdeb4e..847a3ae7d 100644 --- a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpPage.java +++ b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpPage.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/logger/DelegateLogger.java b/Core/src/main/java/com/plotsquared/core/util/logger/DelegateLogger.java index 81e11cada..f1d8d80ff 100644 --- a/Core/src/main/java/com/plotsquared/core/util/logger/DelegateLogger.java +++ b/Core/src/main/java/com/plotsquared/core/util/logger/DelegateLogger.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/logger/ILogger.java b/Core/src/main/java/com/plotsquared/core/util/logger/ILogger.java index 3f9b3d598..156885d25 100644 --- a/Core/src/main/java/com/plotsquared/core/util/logger/ILogger.java +++ b/Core/src/main/java/com/plotsquared/core/util/logger/ILogger.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/net/AbstractDelegateOutputStream.java b/Core/src/main/java/com/plotsquared/core/util/net/AbstractDelegateOutputStream.java index f2b8f2d59..b4521d2ad 100644 --- a/Core/src/main/java/com/plotsquared/core/util/net/AbstractDelegateOutputStream.java +++ b/Core/src/main/java/com/plotsquared/core/util/net/AbstractDelegateOutputStream.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/net/HttpUtil.java b/Core/src/main/java/com/plotsquared/core/util/net/HttpUtil.java index 607a0fa2b..23561b35a 100644 --- a/Core/src/main/java/com/plotsquared/core/util/net/HttpUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/net/HttpUtil.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java index 38e28a586..b2f5f5921 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java index d18859b2e..b5eea7a91 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java index 4a3d1876a..96ef2b060 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java index 92285238d..707b95a43 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/AliasFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/AliasFilter.java index 808f34797..064f074f0 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/AliasFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/AliasFilter.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/AreaLimitedPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/AreaLimitedPlotProvider.java index 2a6e88171..55cd3d767 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/AreaLimitedPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/AreaLimitedPlotProvider.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/ExpiredPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/ExpiredPlotProvider.java index 9b369dc4e..1904e4822 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/ExpiredPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/ExpiredPlotProvider.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/FixedPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/FixedPlotProvider.java index 3bf79c783..f75890032 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/FixedPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/FixedPlotProvider.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/GlobalPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/GlobalPlotProvider.java index 3fb2420c5..7e51a784c 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/GlobalPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/GlobalPlotProvider.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/MemberFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/MemberFilter.java index 3f9670d08..b9082a28d 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/MemberFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/MemberFilter.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/NullProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/NullProvider.java index 6cf3a70d4..d1c14a652 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/NullProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/NullProvider.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/OwnerFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/OwnerFilter.java index cae258722..75faf91d7 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/OwnerFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/OwnerFilter.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PaginatedPlotResult.java b/Core/src/main/java/com/plotsquared/core/util/query/PaginatedPlotResult.java index 2c0ed9152..0d3cf9442 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PaginatedPlotResult.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PaginatedPlotResult.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PlotFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/PlotFilter.java index c017b21b0..56b572fc3 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PlotFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PlotFilter.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/PlotProvider.java index c8048da1a..15850dc33 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PlotProvider.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java b/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java index 27b4352eb..4af321216 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PredicateFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/PredicateFilter.java index dd68f081d..54cdeb56d 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PredicateFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PredicateFilter.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/SearchPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/SearchPlotProvider.java index 91193a79e..0f479b3df 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/SearchPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/SearchPlotProvider.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/query/SortingStrategy.java b/Core/src/main/java/com/plotsquared/core/util/query/SortingStrategy.java index 7a70b46fd..6628d0a2b 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/SortingStrategy.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/SortingStrategy.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/task/AutoClaimFinishTask.java b/Core/src/main/java/com/plotsquared/core/util/task/AutoClaimFinishTask.java index 41f167fd9..967524cf4 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/AutoClaimFinishTask.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/AutoClaimFinishTask.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/task/ObjectTaskRunnable.java b/Core/src/main/java/com/plotsquared/core/util/task/ObjectTaskRunnable.java index 63c0ebc8c..274285ed6 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/ObjectTaskRunnable.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/ObjectTaskRunnable.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal.java b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal.java index e69637944..0950df814 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal2.java b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal2.java index d7da4be93..37142423d 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal2.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal2.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal3.java b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal3.java index 2a71222d4..b38441916 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal3.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal3.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/util/task/TaskManager.java b/Core/src/main/java/com/plotsquared/core/util/task/TaskManager.java index 5878a9247..10e175d5e 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/TaskManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/TaskManager.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/uuid/CacheUUIDService.java b/Core/src/main/java/com/plotsquared/core/uuid/CacheUUIDService.java index 563618afa..526094033 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/CacheUUIDService.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/CacheUUIDService.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/uuid/ServiceError.java b/Core/src/main/java/com/plotsquared/core/uuid/ServiceError.java index 0e248a2c5..e562a8862 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/ServiceError.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/ServiceError.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java b/Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java index 35a4c6c2c..4f8ffdcac 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java b/Core/src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java index 9ca6e783a..23fe05bfb 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java b/Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java index f6fe86f11..9ca50271b 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/java/com/plotsquared/core/uuid/offline/OfflineModeUUIDService.java b/Core/src/main/java/com/plotsquared/core/uuid/offline/OfflineModeUUIDService.java index 49f038db8..d621a998f 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/offline/OfflineModeUUIDService.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/offline/OfflineModeUUIDService.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/resources/addplots.js b/Core/src/main/resources/addplots.js index 55306cec8..2b40f5591 100644 --- a/Core/src/main/resources/addplots.js +++ b/Core/src/main/resources/addplots.js @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/resources/addsigns.js b/Core/src/main/resources/addsigns.js index 5cdd43f79..ea9c9fad9 100644 --- a/Core/src/main/resources/addsigns.js +++ b/Core/src/main/resources/addsigns.js @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/resources/automerge.js b/Core/src/main/resources/automerge.js index 0a1754e4a..1d3f2864e 100644 --- a/Core/src/main/resources/automerge.js +++ b/Core/src/main/resources/automerge.js @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/resources/fixborders.js b/Core/src/main/resources/fixborders.js index f468e6f66..eef1e67ac 100644 --- a/Core/src/main/resources/fixborders.js +++ b/Core/src/main/resources/fixborders.js @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/resources/furthest.js b/Core/src/main/resources/furthest.js index 046cc0535..e2530dd9a 100644 --- a/Core/src/main/resources/furthest.js +++ b/Core/src/main/resources/furthest.js @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/resources/mycommand.js b/Core/src/main/resources/mycommand.js index 1ad9cf1b5..23ceb891f 100644 --- a/Core/src/main/resources/mycommand.js +++ b/Core/src/main/resources/mycommand.js @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/resources/setbiomes.js b/Core/src/main/resources/setbiomes.js index acdb10286..1ac2abc89 100644 --- a/Core/src/main/resources/setbiomes.js +++ b/Core/src/main/resources/setbiomes.js @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/main/resources/start.js b/Core/src/main/resources/start.js index ce1e6ca3b..7f4015194 100644 --- a/Core/src/main/resources/start.js +++ b/Core/src/main/resources/start.js @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/test/java/com/plotsquared/core/database/AbstractDBTest.java b/Core/src/test/java/com/plotsquared/core/database/AbstractDBTest.java index d502bd520..fe35c26aa 100644 --- a/Core/src/test/java/com/plotsquared/core/database/AbstractDBTest.java +++ b/Core/src/test/java/com/plotsquared/core/database/AbstractDBTest.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java b/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java index 5f8d2859f..f0319d32e 100644 --- a/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java +++ b/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java b/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java index 48a552b9e..fc4f2b4c1 100644 --- a/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java +++ b/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/test/java/com/plotsquared/core/plot/object/LocationTest.java b/Core/src/test/java/com/plotsquared/core/plot/object/LocationTest.java index cef1b4c94..b9c3091bc 100644 --- a/Core/src/test/java/com/plotsquared/core/plot/object/LocationTest.java +++ b/Core/src/test/java/com/plotsquared/core/plot/object/LocationTest.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/Core/src/test/java/com/plotsquared/core/plot/util/EventDispatcherTest.java b/Core/src/test/java/com/plotsquared/core/plot/util/EventDispatcherTest.java index 96f18c9ab..f0b9caaee 100644 --- a/Core/src/test/java/com/plotsquared/core/plot/util/EventDispatcherTest.java +++ b/Core/src/test/java/com/plotsquared/core/plot/util/EventDispatcherTest.java @@ -8,7 +8,7 @@ * | | * |_| * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites + * Copyright (C) 2021 IntellectualSites * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/build.gradle b/build.gradle index 9eb92bd6d..fbc2792f2 100644 --- a/build.gradle +++ b/build.gradle @@ -53,7 +53,7 @@ allprojects { license { header rootProject.file('HEADER') mapping 'java', 'SLASHSTAR_STYLE' - ext.year = 2020 + ext.year = 2021 includes(["**/*.java","**/*.js"]) } nexus { From e549235d8350756ba577ba72cdf84c64a4a1de90 Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Fri, 22 Jan 2021 23:42:45 +0100 Subject: [PATCH 08/16] Switch to ServerLib --- Bukkit/build.gradle | 3 +++ Bukkit/pom.xml | 6 ++++++ Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java | 5 ++++- gradle/wrapper/gradle-wrapper.properties | 2 +- 4 files changed, 14 insertions(+), 2 deletions(-) diff --git a/Bukkit/build.gradle b/Bukkit/build.gradle index 8ce94360a..02237e7ab 100644 --- a/Bukkit/build.gradle +++ b/Bukkit/build.gradle @@ -13,6 +13,7 @@ repositories { } maven { url = "https://ci.ender.zone/plugin/repository/everything/" } maven { url = "https://mvn.intellectualsites.com/content/repositories/releases" } + maven { url = "https://mvn.intellectualsites.com/content/repositories/thirdparty"} maven { url = "https://mvn.intellectualsites.com/content/repositories/snapshots" } maven { url = "http://repo.mvdw-software.be/content/groups/public/" } mavenLocal() @@ -41,6 +42,7 @@ dependencies { compile("se.hyperver.hyperverse:Core:0.6.0-SNAPSHOT"){ transitive = false } compile('com.sk89q:squirrelid:1.0.0-SNAPSHOT'){ transitive = false } compile('be.maximvdw:MVdWPlaceholderAPI:3.1.1'){ transitive = false } + implementation("de.notmyfault:serverlib:1.0.0") } sourceCompatibility = 1.8 @@ -100,6 +102,7 @@ shadowJar { include(dependency("org.khelekore:prtree:1.7.0-SNAPSHOT")) include(dependency("com.sk89q:squirrelid:1.0.0-SNAPSHOT")) include(dependency("com.intellectualsites.paster:Paster:1.0.2-SNAPSHOT")) + include(dependency("de.notmyfault:serverlib:1.0.0")) } relocate('net.kyori.text', 'com.plotsquared.formatting.text') relocate("io.papermc.lib", "com.plotsquared.bukkit.paperlib") diff --git a/Bukkit/pom.xml b/Bukkit/pom.xml index 461b3748d..fdf7ae5c8 100644 --- a/Bukkit/pom.xml +++ b/Bukkit/pom.xml @@ -182,6 +182,12 @@ + + de.notmyfault + serverlib + 1.0.0 + runtime + junit junit diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java index 54cdf00f1..df68aaa0f 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java @@ -118,6 +118,7 @@ import com.plotsquared.core.uuid.offline.OfflineModeUUIDService; import com.sk89q.worldedit.WorldEdit; import com.sk89q.worldedit.bukkit.WorldEditPlugin; import com.sk89q.worldedit.extension.platform.Actor; +import de.notmyfault.serverlib.ServerLib; import io.papermc.lib.PaperLib; import lombok.Getter; import lombok.NonNull; @@ -144,7 +145,6 @@ import org.jetbrains.annotations.Nullable; import java.io.File; import java.lang.reflect.Method; -import java.util.AbstractMap; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; @@ -405,6 +405,9 @@ public final class BukkitMain extends JavaPlugin implements Listener, IPlotMain< getLogger().warning("Failed to clean up players: " + e.getMessage()); } }, 100L, 100L); + + // Check if we are in a safe environment + ServerLib.checkUnsafeForks(); } private void unload() { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 6c9a22477..28ff446a2 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists From 666938b7384be8ebd57143a3996d15041cf69ce9 Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Sat, 30 Jan 2021 13:17:36 +0100 Subject: [PATCH 09/16] Update ServerLib --- Bukkit/build.gradle | 4 ++-- Bukkit/pom.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Bukkit/build.gradle b/Bukkit/build.gradle index 02237e7ab..d471c2fd7 100644 --- a/Bukkit/build.gradle +++ b/Bukkit/build.gradle @@ -42,7 +42,7 @@ dependencies { compile("se.hyperver.hyperverse:Core:0.6.0-SNAPSHOT"){ transitive = false } compile('com.sk89q:squirrelid:1.0.0-SNAPSHOT'){ transitive = false } compile('be.maximvdw:MVdWPlaceholderAPI:3.1.1'){ transitive = false } - implementation("de.notmyfault:serverlib:1.0.0") + implementation("de.notmyfault:serverlib:1.0.1") } sourceCompatibility = 1.8 @@ -102,7 +102,7 @@ shadowJar { include(dependency("org.khelekore:prtree:1.7.0-SNAPSHOT")) include(dependency("com.sk89q:squirrelid:1.0.0-SNAPSHOT")) include(dependency("com.intellectualsites.paster:Paster:1.0.2-SNAPSHOT")) - include(dependency("de.notmyfault:serverlib:1.0.0")) + include(dependency("de.notmyfault:serverlib:1.0.1")) } relocate('net.kyori.text', 'com.plotsquared.formatting.text') relocate("io.papermc.lib", "com.plotsquared.bukkit.paperlib") diff --git a/Bukkit/pom.xml b/Bukkit/pom.xml index fdf7ae5c8..8058f88f3 100644 --- a/Bukkit/pom.xml +++ b/Bukkit/pom.xml @@ -185,7 +185,7 @@ de.notmyfault serverlib - 1.0.0 + 1.0.1 runtime From c42102d1c441aade1176e298fb4d44c262dc608f Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Mon, 1 Feb 2021 15:31:25 +0100 Subject: [PATCH 10/16] Don't shade without relocation --- Bukkit/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/Bukkit/build.gradle b/Bukkit/build.gradle index d471c2fd7..3e7aca2db 100644 --- a/Bukkit/build.gradle +++ b/Bukkit/build.gradle @@ -110,6 +110,7 @@ shadowJar { relocate('com.sk89q.squirrelid', 'com.plotsquared.squirrelid') relocate('org.khelekore.prtree', 'com.plotsquared.prtree') relocate('com.intellectualsites.paster', 'com.plotsquared.core.paster') + relocate('de.notmyfault', 'com.plotsquared.bukkit') archiveFileName = "${project.name}-${parent.version}.jar" destinationDirectory = file "../target" } From 22be81b5cb177063130fadd637b0b3946f3bc83d Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Tue, 16 Feb 2021 23:50:53 +0100 Subject: [PATCH 11/16] Switch to vanity url --- Core/src/main/java/com/plotsquared/core/command/DebugPaste.java | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java b/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java index 55deff92f..e88869ead 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java @@ -104,7 +104,7 @@ public class DebugPaste extends SubCommand { b.append("# Okay :D Great. You are now ready to create your bug report!"); b.append( "\n# You can do so at https://issues.intellectualsites.com/projects/ps"); - b.append("\n# or via our Discord at https://discord.gg/KxkjDVg"); + b.append("\n# or via our Discord at https://discord.gg/intellectualsites"); final IncendoPaster incendoPaster = new IncendoPaster("plotsquared"); incendoPaster.addFile(new IncendoPaster.PasteFile("information", b.toString())); diff --git a/README.md b/README.md index 1d8614201..71c4c3f46 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ is to provide a lag-free and smooth experience. ## Links * [Download](https://www.spigotmc.org/resources/plotsquared-v5.77506/) -* [Discord](https://discord.gg/KxkjDVg) +* [Discord](https://discord.gg/intellectualsites) * [Wiki](https://wiki.intellectualsites.com/plotsquared/home) * [Issues](https://issues.intellectualsites.com/projects/ps) * [Translations](https://intellectualsites.crowdin.com/plotsquared/) From c7e65646670d59232bcf586fdc7c12d5c5abf59a Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Mon, 22 Feb 2021 15:22:38 +0100 Subject: [PATCH 12/16] Add new metrics pies --- Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java index df68aaa0f..0ace2605e 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java @@ -1030,6 +1030,8 @@ public final class BukkitMain extends JavaPlugin implements Listener, IPlotMain< () -> Bukkit.getPluginManager().getPlugin("FastAsyncWorldEdit") != null ? "FastAsyncWorldEdit" : "WorldEdit")); + metrics.addCustomChart(new Metrics.SimplePie("offline_mode", () -> Settings.UUID.OFFLINE ? "true" : "false")); + metrics.addCustomChart(new Metrics.SimplePie("offline_mode_force", () -> Settings.UUID.FORCE_LOWERCASE ? "true" : "false")); } @Override public ChunkManager initChunkManager() { From d9b5dc5dd75821fd1c2f9d6f1c046f9c926cabf4 Mon Sep 17 00:00:00 2001 From: Hannes Greule Date: Wed, 24 Feb 2021 08:45:48 +0100 Subject: [PATCH 13/16] Sort plots for /plot home the same as for /plot visit, fixes PS-188 --- .../main/java/com/plotsquared/core/command/HomeCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java b/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java index 7503b8836..2e99f0f09 100644 --- a/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java @@ -119,7 +119,7 @@ public class HomeCommand extends Command { Captions.NOT_A_NUMBER.send(player, identifier); return CompletableFuture.completedFuture(false); } - query.withSortingStrategy(SortingStrategy.SORT_BY_CREATION); + query.withSortingStrategy(SortingStrategy.SORT_BY_TEMP); break; } // either plot id or alias @@ -178,7 +178,7 @@ public class HomeCommand extends Command { query.withPlot(plot); break; case 0: - query.withSortingStrategy(SortingStrategy.SORT_BY_CREATION); + query.withSortingStrategy(SortingStrategy.SORT_BY_TEMP); break; } if (basePlotOnly) { From 932873ba029ce2c9cf775e21031c15b663203746 Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Wed, 31 Mar 2021 12:42:32 +0200 Subject: [PATCH 14/16] Do not access nms for older versions on newer ones --- .../plotsquared/bukkit/listener/SingleWorldListener.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java index dc55b9d7f..ea9d265f7 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java @@ -49,13 +49,19 @@ public class SingleWorldListener implements Listener { private Method methodGetHandleChunk; private Field mustSave; + private boolean isTrueForNotSave = true; public SingleWorldListener(Plugin plugin) throws Exception { ReflectionUtils.RefClass classChunk = getRefClass("{nms}.Chunk"); ReflectionUtils.RefClass classCraftChunk = getRefClass("{cb}.CraftChunk"); this.methodGetHandleChunk = classCraftChunk.getMethod("getHandle").getRealMethod(); try { - this.mustSave = classChunk.getField("mustSave").getRealField(); + if (PlotSquared.get().IMP.getServerVersion()[1] == 13) { + this.mustSave = classChunk.getField("mustSave").getRealField(); + this.isTrueForNotSave = false; + } else { + this.mustSave = classChunk.getField("mustNotSave").getRealField(); + } } catch (NoSuchFieldException e) { e.printStackTrace(); } From 74a9c2f6b4b4bedd9130e78809a3ca36208628cc Mon Sep 17 00:00:00 2001 From: Hannes Greule Date: Sat, 3 Apr 2021 21:48:21 +0200 Subject: [PATCH 15/16] Reimplement per-world-visit --- .../com/plotsquared/core/command/HomeCommand.java | 14 ++++++++++++-- .../java/com/plotsquared/core/command/Visit.java | 10 ++++++++-- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java b/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java index 2e99f0f09..59e2944d5 100644 --- a/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java @@ -27,6 +27,7 @@ package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; import com.plotsquared.core.configuration.Captions; +import com.plotsquared.core.configuration.Settings; import com.plotsquared.core.events.TeleportCause; import com.plotsquared.core.player.PlotPlayer; import com.plotsquared.core.plot.Plot; @@ -119,7 +120,7 @@ public class HomeCommand extends Command { Captions.NOT_A_NUMBER.send(player, identifier); return CompletableFuture.completedFuture(false); } - query.withSortingStrategy(SortingStrategy.SORT_BY_TEMP); + sortBySettings(query, player); break; } // either plot id or alias @@ -178,7 +179,7 @@ public class HomeCommand extends Command { query.withPlot(plot); break; case 0: - query.withSortingStrategy(SortingStrategy.SORT_BY_TEMP); + sortBySettings(query, player); break; } if (basePlotOnly) { @@ -188,6 +189,15 @@ public class HomeCommand extends Command { return CompletableFuture.completedFuture(true); } + private void sortBySettings(PlotQuery plotQuery, PlotPlayer player) { + if (Settings.Teleport.PER_WORLD_VISIT) { + plotQuery.relativeToArea(player.getApplicablePlotArea()) + .withSortingStrategy(SortingStrategy.SORT_BY_CREATION); + } else { + plotQuery.withSortingStrategy(SortingStrategy.SORT_BY_TEMP); + } + } + @Override public Collection tab(PlotPlayer player, String[] args, boolean space) { final List completions = new ArrayList<>(); diff --git a/Core/src/main/java/com/plotsquared/core/command/Visit.java b/Core/src/main/java/com/plotsquared/core/command/Visit.java index b96cb9b5a..f5c4f1392 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Visit.java +++ b/Core/src/main/java/com/plotsquared/core/command/Visit.java @@ -27,6 +27,7 @@ package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; import com.plotsquared.core.configuration.Captions; +import com.plotsquared.core.configuration.Settings; import com.plotsquared.core.events.TeleportCause; import com.plotsquared.core.player.PlotPlayer; import com.plotsquared.core.plot.Plot; @@ -93,8 +94,13 @@ public class Visit extends Command { return; } - if (sortByArea != null) { - query.relativeToArea(sortByArea).withSortingStrategy(SortingStrategy.SORT_BY_CREATION); + PlotArea relativeArea = sortByArea; + if (Settings.Teleport.PER_WORLD_VISIT && sortByArea == null) { + relativeArea = player.getApplicablePlotArea(); + } + + if (relativeArea != null) { + query.relativeToArea(relativeArea).withSortingStrategy(SortingStrategy.SORT_BY_CREATION); } else { query.withSortingStrategy(SortingStrategy.SORT_BY_TEMP); } From 19daf1bd524f67134d16155ac2fe50c22b441411 Mon Sep 17 00:00:00 2001 From: NotMyFault Date: Sat, 3 Apr 2021 22:18:03 +0200 Subject: [PATCH 16/16] 5.13.12 --- Bukkit/pom.xml | 2 +- build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Bukkit/pom.xml b/Bukkit/pom.xml index 8058f88f3..86ec1a9b3 100644 --- a/Bukkit/pom.xml +++ b/Bukkit/pom.xml @@ -21,7 +21,7 @@ com.plotsquared PlotSquared-Core - 5.13.11 + 5.13.12 compile diff --git a/build.gradle b/build.gradle index fbc2792f2..c20dec826 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext { git = Grgit.open(dir: new File(rootDir.toString() + "/.git")) } -def ver = "5.13.11" +def ver = "5.13.12" def versuffix = "" ext { if (project.hasProperty("versionsuffix")) {