OSDN Git Service

bug fix: disable target of spreading shuriken with index 0
[hengband/hengband.git] / src / mutation.c
index fdf8c8d..bd74d3d 100644 (file)
@@ -3818,7 +3818,7 @@ bool mutation_power_aux(u32b power)
                /* XXX_XXX_XXX Hack!  MUT1_LAUNCHER is negative, see above */
                case 3: /* MUT1_LAUNCHER */
                        /* Gives a multiplier of 2 at first, up to 3 at 40th */
-                       if (!do_cmd_throw_aux(2 + lvl / 40, FALSE, 0)) return FALSE;
+                       if (!do_cmd_throw_aux(2 + lvl / 40, FALSE, -1)) return FALSE;
                        break;
 
                default: