summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/magic/transmigration.txt20
1 files changed, 10 insertions, 10 deletions
diff --git a/npc/magic/transmigration.txt b/npc/magic/transmigration.txt
index 439333d77..ddc2dcdc8 100644
--- a/npc/magic/transmigration.txt
+++ b/npc/magic/transmigration.txt
@@ -29,27 +29,27 @@ OnCall:
l("Mouboo Figurine"), MoubooFigurine;
mes "";
+ mesc l("Transmutating @@ will require:", getitemlink(@menuret));
+
+ // Requeriments listing
switch (@menuret) {
case CrazyRum:
- mesc l("Transmutating @@ will require:", getitemlink(@menuret));
mesc l("* @@/@@ @@", countitem(Plushroom), 10, getitemlink(Plushroom));
mesc l("* @@/@@ @@", countitem(Milk), 1, getitemlink(Milk));
- next;
- mesc l("Transmute?!");
- if (askyesno() == ASK_NO)
- @menuret=0;
break;
case MoubooFigurine:
- mesc l("Transmutating @@ will require:", getitemlink(@menuret));
mesc l("* @@/@@ @@", countitem(WoodenLog), 1, getitemlink(WoodenLog));
- next;
- mesc l("Transmute?!");
- if (askyesno() == ASK_NO)
- @menuret=0;
break;
default:
Exception("ERROR, INVALID TRANSMIGRATION OPTION", RB_DEFAULT|RB_SPEECH); @menuret=0; break;
}
+ // Confirmation
+ if (@menuret) {
+ next;
+ mesc l("Transmute?!");
+ if (askyesno() == ASK_NO)
+ @menuret=0;
+ }
} while (!@menuret);
// Close the dialog