diff options
author | Stijn Buys <ingar@osirion.org> | 2012-11-18 17:07:30 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2012-11-18 17:07:30 +0000 |
commit | 8fb998ec465031971159e8ecd3475d55326958a3 (patch) | |
tree | 473f1c03b5ffce9eb697931283c4fe05eefbff74 /src/game | |
parent | 03ca8502bc9f54b85edfdf69a8b94a40613be892 (diff) |
Corrected a serious bug where spacemines and projectiles have the same module type id.
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/base/game.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/base/game.h b/src/game/base/game.h index 57acf06..d030367 100644 --- a/src/game/base/game.h +++ b/src/game/base/game.h @@ -35,7 +35,7 @@ const unsigned int jumpgate_enttype = 261; const unsigned int station_enttype = 262; const unsigned int cargopod_enttype = 263; const unsigned int spacemine_enttype = 264; -const unsigned int projectile_enttype = 264; +const unsigned int projectile_enttype = 265; const unsigned int race_enttype = 280; // planet docking distance |