Skip to content

Commit

Permalink
Reduce size of skunk's poison cloud on death.
Browse files Browse the repository at this point in the history
  • Loading branch information
elunna committed Sep 23, 2023
1 parent aca4fae commit 393dfe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mon.c
Original file line number Diff line number Diff line change
Expand Up @@ -4271,7 +4271,7 @@ int how;
spore_dies(mdef);
}
if (mdef->data == &mons[PM_SKUNK]) {
create_gas_cloud(mdef->mx, mdef->my, rn1(2, 2), rnd(8));
create_gas_cloud(mdef->mx, mdef->my, 1, rn1(8, 4));
}
if (be_sad && DEADMONSTER(mdef)) {
if (kenny || (Hallucination && !rn2(4))) {
Expand Down

0 comments on commit 393dfe1

Please sign in to comment.