Skip to content

Commit

Permalink
Revert the flat to-hit bonus for artifacts... Almost forgot!
Browse files Browse the repository at this point in the history
  • Loading branch information
elunna committed Oct 13, 2023
1 parent 1025b0d commit 954132d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/artifact.c
Original file line number Diff line number Diff line change
Expand Up @@ -1378,9 +1378,7 @@ struct monst *mon;
always return 0 for any artifact which has that attribute */

if (weap && weap->attk.damn && spec_applies(weap, mon))
/*return rnd((int) weap->attk.damn);*/
/* SLASH'EM style flat damage for artifacts */
return (int)weap->attk.damn;
return rnd((int) weap->attk.damn);
return 0;
}

Expand Down

0 comments on commit 954132d

Please sign in to comment.