]> granicus.if.org Git - nethack/commitdiff
debug commands: lightsources and monpolycontrol
authorcohrs <cohrs>
Mon, 14 Oct 2002 00:20:38 +0000 (00:20 +0000)
committercohrs <cohrs>
Mon, 14 Oct 2002 00:20:38 +0000 (00:20 +0000)
Given no objections to Pat's suggestion, putting back in the change to make
the newest debug commands consistent with the others, removing the space
from the former and the underscore from the latter.

dat/wizhelp
doc/fixes34.1
src/cmd.c

index fd81c69394a11302df5c4be40ba3abdb6744ca1d..788ececbaa187c7701a5ffa4a2672464f82f022c 100644 (file)
@@ -11,8 +11,8 @@ Debug-Mode Quick Reference:
 ^X  ==  show attributes including intrinsic attributes.
 
 #levelchange == change experience level
-#light sources == show mobile light sources
-#monpoly_control == control monster polymorphs
+#lightsources == show mobile light sources
+#monpolycontrol == control monster polymorphs
 #panic == panic test
 #poly == polymorph self
 #seenv == show seen vectors
index 7e45507231d614a45055d3031fde2697d045823f..bdff0262df5ba0d4954b0892b100bc7b0a954e2b 100644 (file)
@@ -278,6 +278,8 @@ don't display the "intones:" prefix when !soundok since the message suffix
        won't be displayed in this case
 document "sound" option in Guidebook
 destroy traps that are buried by boulders dropped in water
+renamed debug commands: light sources -> lightsources,
+       monpoly_control -> monpolycontrol
 
 
 Platform- and/or Interface-Specific Fixes
index e600477ec9fd699929077bd65488eaac00255a90..2479813631bfd11a46f8a9ceabd002363dd9c812 100644 (file)
--- a/src/cmd.c
+++ b/src/cmd.c
@@ -1486,8 +1486,8 @@ struct ext_func_tab extcmdlist[] = {
 #if defined(WIZARD)
 static const struct ext_func_tab debug_extcmdlist[] = {
        {"levelchange", "change experience level", wiz_level_change, TRUE},
-       {"light sources", "show mobile light sources", wiz_light_sources, TRUE},
-       {"monpoly_control", "control monster polymorphs", wiz_mon_polycontrol, TRUE},
+       {"lightsources", "show mobile light sources", wiz_light_sources, TRUE},
+       {"monpolycontrol", "control monster polymorphs", wiz_mon_polycontrol, TRUE},
        {"panic", "test panic routine (fatal to game)", wiz_panic, TRUE},
        {"poly", "polymorph self", wiz_polyself, TRUE},
        {"seenv", "show seen vectors", wiz_show_seenv, TRUE},