summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/commands/motd.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/commands/motd.txt b/npc/commands/motd.txt
index 32ebf7723..dfd3f7242 100644
--- a/npc/commands/motd.txt
+++ b/npc/commands/motd.txt
@@ -96,15 +96,15 @@ function script MOTDConfig {
next;
select
menuimage("actions/back", l("Modify another line")),
- menuimage("actions/remove", l("Remove this line")),
menuimage("actions/edit", l("Modify this line")),
+ menuimage("actions/remove", l("Remove this line")),
rif(.@n > 0, menuimage("actions/raise", l("Move this line up"))),
rif(.@n < .@max, menuimage("actions/lower", l("Move this line down"))),
menuimage("actions/home", l("Return to main menu"));
switch (@menu) {
- case 2: removeLine .@n; return;
- case 3: editLine .@n; return;
+ case 2: editLine .@n; return;
+ case 3: removeLine .@n; return;
case 4: moveUp .@n; return;
case 5: moveDown .@n; return;
case 6: return;