From a3a665118f64067b515e8040e292b0f9c2d24462 Mon Sep 17 00:00:00 2001 From: Nilou Date: Sun, 11 Jan 2026 20:57:43 +0100 Subject: [PATCH] sfx de minage fonctionnels #109 --- entities/player/inventory/scripts/items/shovel.gd | 1 + 1 file changed, 1 insertion(+) 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)