diff -r caf7a86214bd -r f09276eb0c27 hedgewars/uGearsUtils.pas --- a/hedgewars/uGearsUtils.pas Sat Oct 27 15:21:10 2018 +0200 +++ b/hedgewars/uGearsUtils.pas Sat Oct 27 15:55:19 2018 +0200 @@ -1622,7 +1622,11 @@ FindPlace(FollowGear, true, 0, LAND_WIDTH); if (FollowGear <> nil) then - AddVoice(sndReinforce, CurrentTeam^.voicepack) + if random(3) = 0 then + // TODO: Play this when a crate drops close to a hog, not randomly + AddVoice(sndThisOneIsMine, CurrentTeam^.voicepack) + else + AddVoice(sndReinforce, CurrentTeam^.voicepack); end end;