Skip to content

Commit

Permalink
scroll of peace has less range
Browse files Browse the repository at this point in the history
  • Loading branch information
earlfogel committed Feb 17, 2022
1 parent 272bd18 commit d63f132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rogue/misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ bool blessed;
for (mi = mlist; mi != NULL; mi = next(mi)) {
tp = THINGPTR(mi);
if ((blessed && roomin(&hero) == roomin(&tp->t_pos)) ||
(abs(hero.x - tp->t_pos.x) < 10 && abs(hero.y - tp->t_pos.y) < 10)
(abs(hero.x - tp->t_pos.x) < 5 && abs(hero.y - tp->t_pos.y) < 5)
) {
tp->t_dest = &(tp->t_pos);
turn_off(*tp, ISRUN);
Expand Down

0 comments on commit d63f132

Please sign in to comment.