diff options
Diffstat (limited to 'src/game/server/gs_game.cpp')
| -rw-r--r-- | src/game/server/gs_game.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/server/gs_game.cpp b/src/game/server/gs_game.cpp index 14b5a2c7..9a9c233e 100644 --- a/src/game/server/gs_game.cpp +++ b/src/game/server/gs_game.cpp @@ -60,10 +60,10 @@ bool gameobject::on_entity(int index, vec2 pos) type = POWERUP_WEAPON; subtype = WEAPON_SHOTGUN; } - else if(index == ENTITY_WEAPON_ROCKET) + else if(index == ENTITY_WEAPON_GRENADE) { type = POWERUP_WEAPON; - subtype = WEAPON_ROCKET; + subtype = WEAPON_GRENADE; } else if(index == ENTITY_POWERUP_NINJA) { |