Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-01-08 18:06:45 +0000
committerStijn Buys <ingar@osirion.org>2012-01-08 18:06:45 +0000
commit8c6ffe0d6cced65f2118994854fd5be1bd4fddac (patch)
treeab2a9ef4140d665364e3c7876e265d0ba6f9b10e /src/game
parent52fa591e4a7130bf1d3723874b9e09c9e782de55 (diff)
Use the new eject sound.
Diffstat (limited to 'src/game')
-rw-r--r--src/game/base/cargo.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/base/cargo.cc b/src/game/base/cargo.cc
index fd1ee3f..7909e55 100644
--- a/src/game/base/cargo.cc
+++ b/src/game/base/cargo.cc
@@ -359,7 +359,7 @@ void Cargo::eject(core::EntityControlable *ejector, const int amount)
if (ejector->owner()) {
msgstr << "^BDestroyed " << negotiated_amount << " " << aux::plural("unit", negotiated_amount) << " of " << name();
ejector->owner()->send(msgstr.str());
- ejector->owner()->sound("game/eject");
+ ejector->owner()->sound("fx/eject");
}
return;
}
@@ -388,7 +388,7 @@ void Cargo::eject(core::EntityControlable *ejector, const int amount)
std::stringstream msgstr;
msgstr << "^BEjected " << negotiated_amount << " " << aux::plural("unit", negotiated_amount) << " of " << name();
ejector->owner()->send(msgstr.str());
- ejector->owner()->sound("game/eject");
+ ejector->owner()->sound("fx/eject");
}
pod->reset();