rolling boulder trap's boulder can be generated in lava
> On 01/30/2012 08:20 PM, <Someone> wrote: > The boulder from a rolling boulder trap can be generated on a > lava pool. mkroll_launch() in trap.c, line 1584 checks only for pools > of water.
This commit is contained in:
@@ -64,6 +64,16 @@ int x,y;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
boolean
|
||||
is_pool_or_lava(x,y)
|
||||
int x,y;
|
||||
{
|
||||
if (is_pool(x,y) || is_lava(x,y))
|
||||
return TRUE;
|
||||
else
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
boolean
|
||||
is_ice(x,y)
|
||||
int x,y;
|
||||
|
||||
Reference in New Issue
Block a user