diff options
Diffstat (limited to 'src/map/battle.c')
-rw-r--r-- | src/map/battle.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/map/battle.c b/src/map/battle.c index a0ef681a1..562ac6ce3 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -2882,13 +2882,8 @@ int battle_weapon_attack( struct block_list *src,struct block_list *target, case W_REVOLVER: case W_RIFLE: case W_GATLING: - if (sd->inventory_data[damage]->look != A_BULLET) { - clif_arrow_fail(sd,0); - return 0; - } - break; case W_SHOTGUN: - if (sd->inventory_data[damage]->look != A_SHELL) { + if (sd->inventory_data[damage]->look != A_BULLET) { clif_arrow_fail(sd,0); return 0; } |