• R/O
  • HTTP
  • SSH
  • HTTPS

hengbandosx: Commit

The master and develop branches track hengband.

OS X development happens on the macos-1-6-2, macos-2-2-1, and macos-develop branches.


Commit MetaInfo

Revision5527fcd5af093047b6fe0fefc7b96f80a9633976 (tree)
Time2021-01-22 01:44:23
AuthorEric Branlund <ebranlund@fast...>
CommiterEric Branlund

Log Message

Merge branch 'develop' into develop-cocoa

Change Summary

Incremental Difference

--- a/src/player/player-status-flags.c
+++ b/src/player/player-status-flags.c
@@ -1352,7 +1352,7 @@ BIT_FLAGS has_resist_shard(player_type *creature_ptr)
13521352 {
13531353 BIT_FLAGS result = 0L;
13541354
1355- if (!creature_ptr->mimic_form && (creature_ptr->prace == RACE_HALF_TITAN || creature_ptr->prace == RACE_SKELETON))
1355+ if (!creature_ptr->mimic_form && (creature_ptr->prace == RACE_HALF_GIANT || creature_ptr->prace == RACE_SKELETON))
13561356 result |= 0x01 << FLAG_CAUSE_RACE;
13571357
13581358 if (creature_ptr->special_defense & KATA_MUSOU) {
@@ -1729,4 +1729,3 @@ BIT_FLAGS player_aggravate_state(player_type *creature_ptr)
17291729 }
17301730
17311731 bool has_aggravate(player_type *creature_ptr) { return player_aggravate_state(creature_ptr) == AGGRAVATE_NORMAL; }
1732-
--- a/src/spell-kind/earthquake.c
+++ b/src/spell-kind/earthquake.c
@@ -265,7 +265,7 @@ bool earthquake(player_type *caster_ptr, POSITION cy, POSITION cx, POSITION r, M
265265 floor_ptr->grid_array[sy][sx].m_idx = m_idx_aux;
266266 m_ptr->fy = sy;
267267 m_ptr->fx = sx;
268- update_monster(caster_ptr, m_idx, TRUE);
268+ update_monster(caster_ptr, m_idx_aux, TRUE);
269269 lite_spot(caster_ptr, yy, xx);
270270 lite_spot(caster_ptr, sy, sx);
271271 }
Show on old repository browser