From f5ef8898f5593b251258587341d41bbe493e086b Mon Sep 17 00:00:00 2001
From: BuildTools <unconfigured@null.spigotmc.org>
Date: Mon, 11 Feb 2019 23:59:00 -0500
Subject: [PATCH] Improve strings for Event Editor

---
 src/main/java/me/blackvein/quests/EventFactory.java | 6 +++---
 src/main/resources/strings.yml                      | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

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, <cancel>"
-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"