summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/debug.h
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-30 12:20:32 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-30 12:20:32 +0000
commit9f1b85395c59bf30df202366aa077530176196bc (patch)
treee900250516df089d37dab76bf36c5bdee6fc1257 /crawl-ref/source/debug.h
parentf04f543b623b671c847bf9c04ae357a373c94597 (diff)
downloadcrawl-ref-9f1b85395c59bf30df202366aa077530176196bc.tar.gz
crawl-ref-9f1b85395c59bf30df202366aa077530176196bc.zip
Clean up wizard commands.
Fix a bug in wizard-spawning monsters (max was used instead of min.) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8852 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/debug.h')
-rw-r--r--crawl-ref/source/debug.h27
1 files changed, 17 insertions, 10 deletions
diff --git a/crawl-ref/source/debug.h b/crawl-ref/source/debug.h
index acf3dd1f27..8632cfae58 100644
--- a/crawl-ref/source/debug.h
+++ b/crawl-ref/source/debug.h
@@ -57,16 +57,11 @@ inline void __DUMMY_TRACE__(...)
{
}
-#define DEBUGSTR 1 ? ((void) 0) : __DUMMY_TRACE__
-#define TRACE 1 ? ((void) 0) : __DUMMY_TRACE__
+#define DEBUGSTR 1 ? ((void) 0) : __DUMMY_TRACE__
+#define TRACE 1 ? ((void) 0) : __DUMMY_TRACE__
#endif
-
-// last updated 12 Jun 2008 {jpeg}
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
void wizard_cast_spec_spell(void);
void wizard_cast_spec_spell_name(void);
void wizard_create_spec_monster(void);
@@ -74,6 +69,21 @@ void wizard_create_spec_monster_name(void);
void wizard_create_spec_object(void);
void wizard_tweak_object(void);
void wizard_make_object_randart(void);
+void wizard_value_randart();
+void wizard_uncurse_item();
+void wizard_create_all_artefacts();
+void wizard_heal(bool super_heal);
+void wizard_set_hunger_state();
+void wizard_spawn_control();
+void wizard_create_portal();
+void wizard_identify_pack();
+void wizard_unidentify_pack();
+void wizard_create_feature_number();
+void wizard_create_feature_name();
+void wizard_list_branches();
+void wizard_map_level();
+void wizard_gain_piety();
+void wizard_list_items();
void wizard_exercise_skill(void);
void wizard_set_skill_level(void);
void wizard_set_all_skills(void);
@@ -125,9 +135,6 @@ void debug_miscast( int target );
#ifdef DEBUG_DIAGNOSTICS
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
void generate_map_stats();
class map_def;