• R/O
  • HTTP
  • SSH
  • HTTPS

hengband: Commit

変愚蛮怒のメインリポジトリです


Commit MetaInfo

Revisãoc24f18f116c85325939e675e4f0e5956668701b2 (tree)
Hora2020-02-18 00:46:32
Autordeskull <deskull@user...>
Commiterdeskull

Mensagem de Log

[Fix] #40030 teleport_away_followable() の条件文ミス修正. / Fix a if branch in teleport_away_followable().

Mudança Sumário

Diff

--- a/src/spells3.c
+++ b/src/spells3.c
@@ -461,7 +461,7 @@ void teleport_away_followable(player_type *tracer_ptr, MONSTER_IDX m_idx)
461461
462462 bool is_followable = old_ml;
463463 is_followable &= old_cdis <= MAX_SIGHT;
464- is_followable &= !current_world_ptr->timewalk_m_idx > 0;
464+ is_followable &= !(current_world_ptr->timewalk_m_idx > 0);
465465 is_followable &= !tracer_ptr->phase_out;
466466 is_followable &= los(tracer_ptr, tracer_ptr->y, tracer_ptr->x, oldfy, oldfx);
467467 if (!is_followable) return;
Show on old repository browser