diff --git a/core/pom.xml b/core/pom.xml index 26dd667ce..152e784a6 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -16,7 +16,7 @@ - + jitpack.io https://jitpack.io diff --git a/core/src/main/java/me/pikamug/quests/listeners/BukkitUniteListener.java b/core/src/main/java/me/pikamug/quests/listeners/BukkitUniteListener.java index 887c02448..a38b6a691 100644 --- a/core/src/main/java/me/pikamug/quests/listeners/BukkitUniteListener.java +++ b/core/src/main/java/me/pikamug/quests/listeners/BukkitUniteListener.java @@ -40,8 +40,8 @@ public class BukkitUniteListener implements Listener { if (event.getDisbander() != null) { final Player p = Bukkit.getServer().getPlayer(event.getDisbander()); if (p != null) { - if (BukkitLang.get("questDungeonsDisband").length() > 0) { - BukkitLang.send(p, ChatColor.RED + BukkitLang.get("questDungeonsDisband")); + if (BukkitLang.get("questPartiesDelete").length() > 0) { + BukkitLang.send(p, ChatColor.RED + BukkitLang.get("questPartiesDelete")); } } } diff --git a/core/src/main/resources/plugin.yml b/core/src/main/resources/plugin.yml index 6d60fa92a..ebe4c3da4 100644 --- a/core/src/main/resources/plugin.yml +++ b/core/src/main/resources/plugin.yml @@ -5,7 +5,7 @@ api-version: 1.13 description: An extensive questing system. website: https://github.com/PikaMug/Quests author: PikaMug -softdepend: [AstralBooks, Citizens, Denizen, DungeonsXL, GPS, Heroes, mcMMO, Parties, PlaceholderAPI, Unite, Vault, WorldGuard, ZNPCsPlus] +softdepend: [AstralBooks, Citizens, Denizen, GPS, Heroes, mcMMO, Parties, PlaceholderAPI, Unite, Vault, WorldGuard, ZNPCsPlus] permissions: quests.*: description: Access ALL Quests functionality diff --git a/core/src/main/resources/strings.yml b/core/src/main/resources/strings.yml index d9f6fd1f2..430e517e3 100644 --- a/core/src/main/resources/strings.yml +++ b/core/src/main/resources/strings.yml @@ -69,12 +69,6 @@ questEditorEnterFinishMessage: "Enter finish message, " questEditorEnterNPCStart: "Enter NPC UUID, , " questEditorClickNPCStart: "Click on a NPC, , " questEditorEnterBlockStart: "Right-click on a block to use as a start point, , , " -questDungeonsCreate: "Players added to this group may perform quests together!" -questDungeonsDisband: "The quest group was disbanded." -questDungeonsInvite: " can now perform quests with you!" -questDungeonsJoin: "You can now perform quests with Leader ." -questDungeonsKicked: " can no longer perform quests with you." -questDungeonsLeave: "You can no longer perform quests with Leader ." questPartiesCreate: "Players added to this party may perform quests together!" questPartiesDelete: "The quest party was disbanded." questPartiesJoin: "You can now perform quests with the party."