diff --git a/src/main/java/me/blackvein/quests/EventFactory.java b/src/main/java/me/blackvein/quests/EventFactory.java index 1274a403b..a9e5c2c2b 100644 --- a/src/main/java/me/blackvein/quests/EventFactory.java +++ b/src/main/java/me/blackvein/quests/EventFactory.java @@ -403,7 +403,7 @@ public class EventFactory implements ConversationAbandonedListener { @Override public String getPromptText(ConversationContext context) { - String text = ChatColor.RED + Lang.get("eventEditorDeletePrompt") + " \"" + ChatColor.GOLD + (String) context.getSessionData(CK.ED_EVENT_DELETE) + ChatColor.RED + "\"?\n"; + String text = ChatColor.RED + Lang.get("eventEditorDeletePrompt") + "(" + ChatColor.GOLD + (String) context.getSessionData(CK.ED_EVENT_DELETE) + ChatColor.RED + ")"; text += ChatColor.YELLOW + Lang.get("yesWord") + "/" + Lang.get("noWord"); return text; } @@ -693,7 +693,7 @@ public class EventFactory implements ConversationAbandonedListener { @Override public String getPromptText(ConversationContext context) { - String text = ChatColor.RED + Lang.get("eventEditorFinishAndSave") + " \"" + ChatColor.GOLD + (String) context.getSessionData(CK.E_NAME) + ChatColor.RED + "\"?\n"; + String text = ChatColor.RED + Lang.get("eventEditorFinishAndSave") + "(" + ChatColor.GOLD + (String) context.getSessionData(CK.E_NAME) + ChatColor.RED + ")"; if (modified.isEmpty() == false) { text += ChatColor.RED + Lang.get("eventEditorModifiedNote") + "\n"; for (String s : modified) { @@ -2257,4 +2257,4 @@ public class EventFactory implements ConversationAbandonedListener { return new CreateMenuPrompt(); } } -} +} \ No newline at end of file diff --git a/src/main/resources/strings.yml b/src/main/resources/strings.yml index fec4af668..c959c59d0 100644 --- a/src/main/resources/strings.yml +++ b/src/main/resources/strings.yml @@ -318,9 +318,9 @@ eventEditorErrorSaving: "An error occurred while saving." eventEditorDeleted: "Event deleted, Quests and Events reloaded." eventEditorSaved: "Event saved, Quests and Events reloaded." eventEditorEnterEventName: "Enter an Event name, " -eventEditorDeletePrompt: "Are you sure you want to delete the Event" +eventEditorDeletePrompt: "Are you sure you want to delete the Event?" eventEditorQuitWithoutSaving: "Are you sure you want to quit without saving?" -eventEditorFinishAndSave: "Are you sure you want to finish and save the Event" +eventEditorFinishAndSave: "Are you sure you want to finish and save the Event?" eventEditorModifiedNote: 'Note: You have modified an Event that the following Quests use:' eventEditorForcedToQuit: "If you save the Event, anyone who is actively doing any of these Quests will be forced to quit them." eventEditorEventInUse: "The following Quests use the Event"