summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-08-14 20:43:11 -0400
committerJesse Luehrs <doy@tozt.net>2014-08-15 00:34:10 -0400
commit5e22151ce1d051151d495b018bb77a1cc2544a60 (patch)
treec41e508da1448a6604953005f96a729959cb6be5
parentd388beadfb4903065b50ddae93ba5c09711a79f9 (diff)
downloadcrawl-ref-5e22151ce1d051151d495b018bb77a1cc2544a60.tar.gz
crawl-ref-5e22151ce1d051151d495b018bb77a1cc2544a60.zip
swap &m/&M
-rw-r--r--crawl-ref/source/command.cc2
-rw-r--r--crawl-ref/source/main.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index 519ba88e5d..bcfad0972b 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -2575,7 +2575,7 @@ int list_wizard_commands(bool do_redraw_screen)
"<yellow>Monster related commands</yellow>\n"
"<w>D</w> detect all monsters\n"
"<w>G</w> dismiss all monsters\n"
- "<w>m</w>/<w>M</w> create monster by number/name\n"
+ "<w>m</w>/<w>M</w> create monster by name/number\n"
"<w>\"</w> list monsters\n"
"\n"
"<yellow>Item related commands</yellow>\n"
diff --git a/crawl-ref/source/main.cc b/crawl-ref/source/main.cc
index 87920ecc8a..f33f3b0b54 100644
--- a/crawl-ref/source/main.cc
+++ b/crawl-ref/source/main.cc
@@ -727,8 +727,8 @@ static void _do_wizard_command(int wiz_command, bool silent_fail)
case '\\': debug_make_shop(); break;
case 'f': wizard_quick_fsim(); break;
case 'F': wizard_fight_sim(false); break;
- case 'm': wizard_create_spec_monster(); break;
- case 'M': wizard_create_spec_monster_name(); break;
+ case 'm': wizard_create_spec_monster_name(); break;
+ case 'M': wizard_create_spec_monster(); break;
case 'R': wizard_spawn_control(); break;
case 'r': wizard_change_species(); break;
case '>': wizard_place_stairs(true); break;