summaryrefslogtreecommitdiff
path: root/game/states/preload.js
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2014-08-31 14:17:06 +0200
committerJustin Worthe <justin.worthe@gmail.com>2014-08-31 14:17:06 +0200
commit25b5fb04067dcc65d1bbb76a99a919d92ceaab25 (patch)
tree35efb6a1a2c628fb1923b55a3bab65c036c45a38 /game/states/preload.js
parent94892a4e24b5c7b9618d6d5ae3e676b11ae8896d (diff)
Added sound effect for player respawning
Diffstat (limited to 'game/states/preload.js')
-rw-r--r--game/states/preload.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/states/preload.js b/game/states/preload.js
index 6ec5b31..951c83c 100644
--- a/game/states/preload.js
+++ b/game/states/preload.js
@@ -27,7 +27,7 @@ Preload.prototype = {
this.load.bitmapFont('scorefont-b', 'assets/fonts/scorefont-b.png', 'assets/fonts/scorefont.fnt');
this.load.audio('nomSound', 'assets/audio/nom.ogg', true);
-
+ this.load.audio('owSound', 'assets/audio/ow.ogg', true);
this.load.text('level', 'assets/levels/maze.lvl');
},