Commit dc9b3d5 1 parent 8e3ac53 commit dc9b3d5 Copy full SHA for dc9b3d5
File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -3376,4 +3376,5 @@ The following changes to date are:
3376
3376
- Add object menu glyphs to inventory in curses mode
3377
3377
- Fix: names of new ring types when type is known
3378
3378
- Proper encyclopedia entries/lookup for the artifact rings
3379
+ - Fix: Convicts felt guilty when encountering the guard from a gold vault
3379
3380
Original file line number Diff line number Diff line change @@ -4818,7 +4818,8 @@ boolean via_attack;
4818
4818
adjalign (2 );
4819
4819
}
4820
4820
} else {
4821
- if (u .ualign .type != A_NONE ) { /* Infidels are supposed to be bad */
4821
+ /* Infidels and Convicts don't feel guilt from this */
4822
+ if (!(u .ualign .type == A_NONE || Role_if (PM_CONVICT ))) {
4822
4823
if (canspotmon (mtmp ))
4823
4824
You_feel ("guilty." );
4824
4825
else
You can’t perform that action at this time.
0 commit comments