diff --git a/entities/player/inventory/scripts/items/shovel.gd b/entities/player/inventory/scripts/items/shovel.gd index 1ac9a4a..38b2a57 100644 --- a/entities/player/inventory/scripts/items/shovel.gd +++ b/entities/player/inventory/scripts/items/shovel.gd @@ -33,6 +33,7 @@ func can_use(_player : Player, zone : Player.ActionZone) -> bool: return false func use(player : Player, zone : Player.ActionZone) -> bool: + AudioManager.play_sfx("Pickaxe") for area in zone.get_affected_areas(): if area and area is Plant: harvest(area, player)