diff --git a/src/components/AliasedActionCreateDialog.vue b/src/components/AliasedActionCreateDialog.vue
index e214615..fd50ff4 100644
--- a/src/components/AliasedActionCreateDialog.vue
+++ b/src/components/AliasedActionCreateDialog.vue
@@ -128,6 +128,13 @@
+
+ Screens and Buttons reference Aliased Actions by their key. You should
+ not change an Aliased Action's key unless you know what you are doing.
+
Cancel
@@ -185,7 +192,7 @@ export default {
},
initialActionArg: {
type: String,
- default: "/play "
+ default: "play "
},
initialHypixelBuildTeamAdminOnly: {
type: Boolean,
@@ -287,7 +294,7 @@ export default {
!this.formActionArg &&
this.formActionType === "SendChatCommandAction"
) {
- this.formActionArg = "/play ";
+ this.formActionArg = "play ";
} else {
this.formActionArg = "";
}
diff --git a/src/components/AliasedActionsTable.vue b/src/components/AliasedActionsTable.vue
index 7a3f681..3ec27cb 100644
--- a/src/components/AliasedActionsTable.vue
+++ b/src/components/AliasedActionsTable.vue
@@ -103,7 +103,7 @@ export default {
editorInitialVisibleValue: true,
editorInitialAdminOnlyValue: false,
editorInitialActionType: "SendChatCommandAction",
- editorInitialActionArg: "/play ",
+ editorInitialActionArg: "play ",
editorInitialHypixelPackageRankRegex: "",
editorInitialHypixelRankRegex: "",
editorInitialHypixelLocrawRegex: "",
@@ -137,7 +137,7 @@ export default {
this.editorInitialVisibleValue = true;
this.editorInitialAdminOnlyValue = false;
this.editorInitialActionType = "SendChatCommandAction";
- this.editorInitialActionArg = "/play ";
+ this.editorInitialActionArg = "play ";
this.editorInitialHypixelRankRegex = "";
this.editorInitialHypixelPackageRankRegex = "";
this.editorInitialHypixelLocrawRegex = {};
diff --git a/src/components/TranslationCreateDialog.vue b/src/components/TranslationCreateDialog.vue
index 8943841..48f9ee2 100644
--- a/src/components/TranslationCreateDialog.vue
+++ b/src/components/TranslationCreateDialog.vue
@@ -107,11 +107,11 @@ export default {
},
initialTranslationKey: {
type: String,
- default: ""
+ default: "quickplay.games."
},
initialTranslationLang: {
type: String,
- default: ""
+ default: "en_us"
},
initialTranslationValue: {
type: String,