• R/O
  • HTTP
  • SSH
  • HTTPS

hengband: Commit

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


Commit MetaInfo

Revision24f5ddeaba507fa4296e92c0050cadf97e92986c (tree)
Time2021-01-22 00:49:33
Authordeskull <deskull@user...>
Commiterdeskull

Log Message

Merge remote-tracking branch 'remotes/origin/feature/Fix-Resist-Shard-HalfGiant' into develop

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-
Show on old repository browser