OSDN Git Service

[Fix] #41487 SoundとMusicを間違えていたので修正 / Resolved the typo
[hengband/hengband.git] / src / monster-attack / monster-attack-util.c
index 23063ac..69a8b8f 100644 (file)
@@ -5,7 +5,7 @@
  */
 
 #include "monster-attack/monster-attack-util.h"
-#include "floor/floor.h"
+#include "system/floor-type-definition.h"
 
 monap_type *initialize_monap_type(player_type *target_ptr, monap_type *monap_ptr, MONSTER_IDX m_idx)
 {
@@ -21,7 +21,7 @@ monap_type *initialize_monap_type(player_type *target_ptr, monap_type *monap_ptr
     monap_ptr->do_silly_attack = one_in_(2) && target_ptr->image;
     monap_ptr->obvious = FALSE;
     monap_ptr->get_damage = 0;
-    monap_ptr->alive = FALSE;
+    monap_ptr->alive = TRUE;
     monap_ptr->fear = FALSE;
     return monap_ptr;
-}
+}
\ No newline at end of file