Untrapping containers or doors gives some experience
This commit is contained in:
@@ -1411,6 +1411,7 @@ shopkeepers magnified the cost of shop items used up as a group; normally
|
|||||||
candles to light them all charged N * N * single_candle_price
|
candles to light them all charged N * N * single_candle_price
|
||||||
the tile for Ixoth (knight's quest nemesis) depicted a demon rather than a
|
the tile for Ixoth (knight's quest nemesis) depicted a demon rather than a
|
||||||
dragon; change it to be a red dragon
|
dragon; change it to be a red dragon
|
||||||
|
untrapping containers or doors gives some experience
|
||||||
|
|
||||||
|
|
||||||
Fixes to 3.7.0-x General Problems Exposed Via git Repository
|
Fixes to 3.7.0-x General Problems Exposed Via git Repository
|
||||||
|
|||||||
@@ -5593,6 +5593,8 @@ untrap_box(
|
|||||||
} else {
|
} else {
|
||||||
You("disarm it!");
|
You("disarm it!");
|
||||||
box->otrapped = 0;
|
box->otrapped = 0;
|
||||||
|
more_experienced(8, 0);
|
||||||
|
newexplevel();
|
||||||
}
|
}
|
||||||
exercise(A_DEX, TRUE);
|
exercise(A_DEX, TRUE);
|
||||||
} else {
|
} else {
|
||||||
@@ -5836,6 +5838,8 @@ untrap(
|
|||||||
} else {
|
} else {
|
||||||
You("disarm it!");
|
You("disarm it!");
|
||||||
levl[x][y].doormask &= ~D_TRAPPED;
|
levl[x][y].doormask &= ~D_TRAPPED;
|
||||||
|
more_experienced(8, 0);
|
||||||
|
newexplevel();
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
pline("This door was not trapped.");
|
pline("This door was not trapped.");
|
||||||
|
|||||||
Reference in New Issue
Block a user