OSDN Git Service

★フランテングのSLAY_GIANTをKILL_GIANTに移転した影響で, 巨人に9倍ダイ
authornothere <nothere@0568b783-4c39-0410-ac80-bf13821ea2a2>
Tue, 23 Sep 2003 19:44:49 +0000 (19:44 +0000)
committernothere <nothere@0568b783-4c39-0410-ac80-bf13821ea2a2>
Tue, 23 Sep 2003 19:44:49 +0000 (19:44 +0000)
スのダメージを与えるコードが無効になっていたバグを修正.

src/cmd1.c

index 26859ad..d2ed267 100644 (file)
@@ -416,8 +416,6 @@ s16b tot_dam_aux(object_type *o_ptr, int tdam, monster_type *m_ptr, int mode, bo
                                }
 
                                if (mult < 30) mult = 30;
-                               if (o_ptr->name1 == ART_HRUNTING)
-                                       mult *= 3;
                        }
 
                        /* Execute Giant */
@@ -430,6 +428,7 @@ s16b tot_dam_aux(object_type *o_ptr, int tdam, monster_type *m_ptr, int mode, bo
                                }
 
                                if (mult < 50) mult = 50;
+                               if ((mult < 90) && (o_ptr->name1 == ART_HRUNTING)) mult = 90;
                        }
 
                        /* Slay Dragon  */