OSDN Git Service

[Refactor] 無駄な空白、改行の削除、includeのソート
[hengband/hengband.git] / src / room / rooms-pit-nest.c
index 7b679c4..390c370 100644 (file)
@@ -250,7 +250,7 @@ bool build_type5(player_type *player_ptr, dun_data_type *dd_ptr)
 
         while (attempts--) {
             /* Get a (hard) monster type */
-            r_idx = get_mon_num(player_ptr, floor_ptr->dun_level + 11, 0);
+            r_idx = get_mon_num(player_ptr, 0, floor_ptr->dun_level + 11, 0);
             r_ptr = &r_info[r_idx];
 
             /* Decline incorrect alignment */
@@ -462,7 +462,7 @@ bool build_type6(player_type *player_ptr, dun_data_type *dd_ptr)
 
         while (attempts--) {
             /* Get a (hard) monster type */
-            r_idx = get_mon_num(player_ptr, floor_ptr->dun_level + 11, 0);
+            r_idx = get_mon_num(player_ptr, 0, floor_ptr->dun_level + 11, 0);
             r_ptr = &r_info[r_idx];
 
             /* Decline incorrect alignment */
@@ -743,7 +743,7 @@ bool build_type13(player_type *player_ptr, dun_data_type *dd_ptr)
 
         while (attempts--) {
             /* Get a (hard) monster type */
-            r_idx = get_mon_num(player_ptr, floor_ptr->dun_level + 0, 0);
+            r_idx = get_mon_num(player_ptr, 0, floor_ptr->dun_level + 0, 0);
             r_ptr = &r_info[r_idx];
 
             /* Decline incorrect alignment */
@@ -896,4 +896,4 @@ bool build_type13(player_type *player_ptr, dun_data_type *dd_ptr)
     }
 
     return TRUE;
-}
+}
\ No newline at end of file