From c4928a52cb100f696f2ff54d27a87f2ff2ae37c2 Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Sat, 18 Feb 2012 18:37:22 +0100 Subject: Remove unused parameter from scatter() function. --- src/dungeon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dungeon.c') diff --git a/src/dungeon.c b/src/dungeon.c index 8a54329e..6d732f00 100644 --- a/src/dungeon.c +++ b/src/dungeon.c @@ -1273,7 +1273,7 @@ static void process_world(void) /* Summon */ while (1) { - scatter(&yy, &xx, p_ptr->py, p_ptr->px, 6, 0); + scatter(&yy, &xx, p_ptr->py, p_ptr->px, 6); /* Accept an empty grid within the boundary */ if (in_bounds(yy, xx) && cave_floor_bold(yy, xx)) break; -- cgit v1.2.3