diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml
index 41aac583d7661a270e4de4287efac459473dc1cd..be5f81e7e7e044a37e86352bbef5eefc285d96f7 100755
--- a/indra/newview/app_settings/settings.xml
+++ b/indra/newview/app_settings/settings.xml
@@ -12621,6 +12621,17 @@
       <key>Value</key>
       <string>00000000-0000-0000-0000-000000000000</string>
     </map>
+    <key>UISndRestart</key>
+    <map>
+      <key>Comment</key>
+      <string>Sound file for region restarting (uuid for sound asset)</string>
+      <key>Persist</key>
+      <integer>1</integer>
+      <key>Type</key>
+      <string>String</string>
+      <key>Value</key>
+      <string>4b315701-1972-9e23-cdd8-23cbc8cb0f42</string>
+    </map>
     <key>UISndSnapshot</key>
     <map>
       <key>Comment</key>
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp
index f66b3ba8051f10ec1ef593d51e1874f90183ee86..48bfdc03acf54c13a9240414c9518c3ba1e32384 100755
--- a/indra/newview/llviewermessage.cpp
+++ b/indra/newview/llviewermessage.cpp
@@ -5973,7 +5973,7 @@ bool attempt_standard_notification(LLMessageSystem* msgsystem)
 			LLStringUtil::format(timeStr, substitution);
 			llsdBlock["TIME"] = timeStr;
 
-			send_sound_trigger(LLUUID(gSavedSettings.getString("UISndAlert")), 1.0f);
+			send_sound_trigger(LLUUID(gSavedSettings.getString("UISndRestart")), 1.0f);
 		}
 
 		LLNotificationsUtil::add(notificationID, llsdBlock);