diff --git a/src/main/java/me/blackvein/quests/QuestFactory.java b/src/main/java/me/blackvein/quests/QuestFactory.java index 8a8aa8de5..d0b804511 100644 --- a/src/main/java/me/blackvein/quests/QuestFactory.java +++ b/src/main/java/me/blackvein/quests/QuestFactory.java @@ -1773,7 +1773,7 @@ public class QuestFactory implements ConversationAbandonedListener { @Override public String getPromptText(ConversationContext context) { - String text = ChatColor.RED + Lang.get("questEditorDeleted") + " \"" + ChatColor.GOLD + (String) context.getSessionData(CK.ED_QUEST_DELETE) + ChatColor.RED + "\"?\n"; + String text = ChatColor.RED + Lang.get("questEditorDeleted") + " (" + ChatColor.GOLD + (String) context.getSessionData(CK.ED_QUEST_DELETE) + ChatColor.RED + ")"; text += ChatColor.YELLOW + Lang.get("yesWord") + "/" + Lang.get("noWord"); return text; } diff --git a/src/main/resources/strings.yml b/src/main/resources/strings.yml index c959c59d0..9edad18da 100644 --- a/src/main/resources/strings.yml +++ b/src/main/resources/strings.yml @@ -110,7 +110,7 @@ questEditorNeedFinishMessage: "You must set a finish message!" questEditorNeedStages: "Your Quest has no Stages!" questEditorSaved: "%bold%Quest saved! %reset%(You will need to perform %red% %reset% for it to appear in-game)" questEditorExited: "Are you sure you want to exit without saving?" -questEditorDeleted: "Are you sure you want to delete the Quest" +questEditorDeleted: "Are you sure you want to delete the Quest?" stageEditorEditStage: "Edit Stage" stageEditorNewStage: "Add new Stage" stageEditorStages: "Stages"