diff options
-rw-r--r-- | src/game/base/cargo.cc | 4 |
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(); |