Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/base')
-rw-r--r--src/game/base/game.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/base/game.cc b/src/game/base/game.cc
index 9800eb8..a91ba1d 100644
--- a/src/game/base/game.cc
+++ b/src/game/base/game.cc
@@ -737,7 +737,8 @@ void Game::func_beam(core::Player *player, const std::string &args)
std::stringstream msgstr;
msgstr << "^BBeamed in " << negotiated_amount << " " << aux::plural("unit", negotiated_amount) << " of " << item->info()->name();
player->send(msgstr.str());
- player->sound("game/beam");
+ // TODO sound must be emitted at cargo pod location
+ player->sound("fx/beam");
}
loot_left += item->amount();