We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c126ba commit c2d95ccCopy full SHA for c2d95cc
1 file changed
src/dothrow.c
@@ -179,6 +179,10 @@ throw_obj(struct obj *obj, int shotlimit)
179
/* ...or is using a special weapon for their role... */
180
multishot += multishot_class_bonus(Role_switch, obj, uwep);
181
182
+ /* ...or is using a legendary artifact... */
183
+ if (skill == -P_BOW && uwep->oartifact
184
+ && uwep->oartifact == ART_LONGBOW_OF_DIANA)
185
+ multishot++;
186
/* ...or using their race's special bow; no bonus for spears */
187
if (!weakmultishot)
188
switch (Race_switch) {
@@ -200,9 +204,6 @@ throw_obj(struct obj *obj, int shotlimit)
200
204
case PM_HUMAN:
201
205
case PM_DWARF:
202
206
default:
203
- if (skill == -P_BOW &&
- uwep->oartifact && uwep->oartifact == ART_LONGBOW_OF_DIANA)
- multishot++;
207
break; /* No bonus */
208
}
209
0 commit comments