Skip to content

Commit 489af55

Browse files
committed
Tweak feedback between shopkeepers and Draugr.
1 parent e5730c1 commit 489af55

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

doc/evilhack-changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -3433,4 +3433,5 @@ The following changes to date are:
34333433
- Draugr can regenerate hit points while in the Valley of the Dead
34343434
- More role-specific bits for Draugr
34353435
- Ensure unique undead monsters are appropriately hostile towards Draugr
3436+
- Tweak feedback between shopkeepers and Draugr
34363437

src/eat.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2144,7 +2144,7 @@ struct obj *otmp;
21442144
if ((!Upolyd && Race_if(PM_DRAUGR))
21452145
|| (Role_if(PM_CONVICT) && (rn2(8) > u.ulevel))) {
21462146
You_feel("a slight stomach ache."); /* prisoners are used to bad food */
2147-
} else
2147+
} else
21482148
make_vomiting((Vomiting & TIMEOUT) + (long) d(10, 4), TRUE);
21492149
} else {
21502150
give_feedback:

src/shk.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,10 @@ char *enterstring;
699699
tool, plur(cnt));
700700
should_block = TRUE;
701701
} else if (eshkp->pbanned && !ANGRY(shkp)) {
702-
verbalize("I don't sell to your kind here.");
702+
if (!Upolyd && Race_if(PM_DRAUGR))
703+
verbalize("I don't do business with zombies!");
704+
else
705+
verbalize("I don't sell to your kind here.");
703706
should_block = TRUE;
704707
} else if (u.usteed) {
705708
if (!Deaf && !muteshk(shkp))

0 commit comments

Comments
 (0)