summaryrefslogtreecommitdiff
path: root/src/q_thrain.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/q_thrain.c')
-rw-r--r--src/q_thrain.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/q_thrain.c b/src/q_thrain.c
index 8b2df5a4..b2b1be9f 100644
--- a/src/q_thrain.c
+++ b/src/q_thrain.c
@@ -104,12 +104,7 @@ bool_ quest_thrain_gen_hook(char *fmt)
bx0 = get_next_arg(fmt);
/* Pick a room size */
- xsize = 0;
- ysize = 0;
- init_flags = INIT_GET_SIZE;
- process_dungeon_file_full = TRUE;
- process_dungeon_file(NULL, "thrain.map", &ysize, &xsize, cur_hgt, cur_wid, TRUE);
- process_dungeon_file_full = FALSE;
+ get_map_size("thrain.map", &ysize, &xsize);
/* Try to allocate space for room. If fails, exit */
if (!room_alloc(xsize + 2, ysize + 2, FALSE, by0, bx0, &xval, &yval)) return FALSE;
@@ -141,9 +136,7 @@ bool_ quest_thrain_gen_hook(char *fmt)
xstart = x1;
ystart = y1;
init_flags = INIT_CREATE_DUNGEON;
- process_dungeon_file_full = TRUE;
- process_dungeon_file(NULL, "thrain.map", &ystart, &xstart, cur_hgt, cur_wid, TRUE);
- process_dungeon_file_full = FALSE;
+ process_dungeon_file("thrain.map", &ystart, &xstart, cur_hgt, cur_wid, TRUE, TRUE);
for (x = x1; x < xstart; x++)
for (y = y1; y < ystart; y++)