Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/sounds/pickup.ogg
Binary file not shown.
1 change: 1 addition & 0 deletions src/drop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ export class Drop {

game.log('%CreatureName' + creature.id + '% picks up ' + this.name + ':');
creature.hint(this.name, 'msg_effects');
game.soundsys.playSFX('sounds/pickup');

creature.dropCollection.push(this);

Expand Down
1 change: 1 addition & 0 deletions src/game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ export default class Game {
'sounds/upgrade',
'sounds/mudbath',
'sounds/AncientBeast',
'sounds/pickup',
];

this.soundsys = new SoundSys({ paths });
Expand Down
Loading