summaryrefslogtreecommitdiff
path: root/src/plots.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plots.c')
-rw-r--r--src/plots.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/plots.c b/src/plots.c
index 6399c436..376cd8d6 100644
--- a/src/plots.c
+++ b/src/plots.c
@@ -205,6 +205,12 @@ char* get_next_arg_str(char *fmt)
}
}
}
+object_type* get_next_arg_obj() {
+ object_type *o_ptr = param_pile[get_next_arg_pile_pos++].o_ptr;
+ assert(o_ptr != NULL);
+ return o_ptr;
+}
+
/* Actually process the hooks */
int process_hooks_restart = FALSE;
@@ -395,6 +401,3 @@ bool_ quest_null_hook(int q)
/*************************** Bounty Quest *************************/
#include "q_bounty.c"
-
-/************************* Fireproofing Quest *********************/
-#include "q_fireprof.c"