Fix launched object accessing a deleted trap
In launch_obj, the code first got the trap, then called ohitmon (which can delete the trap by doing mondied -> fill_pit -> flooreffects -> deltrap), then after that used the trap variable.
This commit is contained in:
@@ -1840,7 +1840,6 @@ int style;
|
||||
|
||||
bhitpos.x += dx;
|
||||
bhitpos.y += dy;
|
||||
t = t_at(bhitpos.x, bhitpos.y);
|
||||
|
||||
if ((mtmp = m_at(bhitpos.x, bhitpos.y)) != 0) {
|
||||
if (otyp == BOULDER && throws_rocks(mtmp->data)) {
|
||||
@@ -1875,7 +1874,7 @@ int style;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (t && otyp == BOULDER) {
|
||||
if ((t = t_at(bhitpos.x, bhitpos.y)) != 0 && otyp == BOULDER) {
|
||||
switch (t->ttyp) {
|
||||
case LANDMINE:
|
||||
if (rn2(10) > 2) {
|
||||
|
||||
Reference in New Issue
Block a user