Commit 489af55 1 parent e5730c1 commit 489af55 Copy full SHA for 489af55
File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -3433,4 +3433,5 @@ The following changes to date are:
3433
3433
- Draugr can regenerate hit points while in the Valley of the Dead
3434
3434
- More role-specific bits for Draugr
3435
3435
- Ensure unique undead monsters are appropriately hostile towards Draugr
3436
+ - Tweak feedback between shopkeepers and Draugr
3436
3437
Original file line number Diff line number Diff line change @@ -2144,7 +2144,7 @@ struct obj *otmp;
2144
2144
if ((!Upolyd && Race_if (PM_DRAUGR ))
2145
2145
|| (Role_if (PM_CONVICT ) && (rn2 (8 ) > u .ulevel ))) {
2146
2146
You_feel ("a slight stomach ache." ); /* prisoners are used to bad food */
2147
- } else
2147
+ } else
2148
2148
make_vomiting ((Vomiting & TIMEOUT ) + (long ) d (10 , 4 ), TRUE);
2149
2149
} else {
2150
2150
give_feedback :
Original file line number Diff line number Diff line change @@ -699,7 +699,10 @@ char *enterstring;
699
699
tool , plur (cnt ));
700
700
should_block = TRUE;
701
701
} 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." );
703
706
should_block = TRUE;
704
707
} else if (u .usteed ) {
705
708
if (!Deaf && !muteshk (shkp ))
You can’t perform that action at this time.
0 commit comments