diff options
author | Stijn Buys <ingar@osirion.org> | 2013-01-20 21:05:17 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2013-01-20 21:05:17 +0000 |
commit | ff57bf67a8e6f39c422b343488c3e90318063d3f (patch) | |
tree | 62101987d19bbc07f4571aca2c9d2d600e905c85 /src | |
parent | 7c5c078341d43492c34e31814e472c4e62b73e16 (diff) |
Currected a small bug where engien function target_controlable_next was removed twice.
Diffstat (limited to 'src')
-rw-r--r-- | src/client/targets.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/targets.cc b/src/client/targets.cc index fcd7dc6..3e8acee 100644 --- a/src/client/targets.cc +++ b/src/client/targets.cc @@ -432,7 +432,7 @@ void shutdown() core::Func::remove("target_none"); core::Func::remove("target_center"); core::Func::remove("target_controlable_next"); - core::Func::remove("target_controlable_next"); + core::Func::remove("target_controlable_prev"); } const math::Vector3f & aim() |