diff options
author | MaeJong <mewiceclair@gmail.com> | 2017-05-18 12:41:47 +0200 |
---|---|---|
committer | MaeJong <mewiceclair@gmail.com> | 2017-05-18 12:41:47 +0200 |
commit | 88cf11bc3f051ee3d8d75d4242c3a286a97384d7 (patch) | |
tree | cd4ccf03659e541ba2d6f6c166ab37b51f8e3979 | |
parent | 8404c2a08b47c2a84eeea3000072df1d2381d294 (diff) |
Decrease Hive bbox size & re-center the model
These are GPP coords.
-rw-r--r-- | src/game/bg_misc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/bg_misc.c b/src/game/bg_misc.c index 3fdec70..4ccd698 100644 --- a/src/game/bg_misc.c +++ b/src/game/bg_misc.c @@ -191,9 +191,9 @@ buildableAttributes_t bg_buildableList[ ] = "team_alien_hive", //char *entityName; { "models/buildables/acid_tube/acid_tube.md3", 0, 0, 0 }, 1.0f, //float modelScale; - { -35, -35, -25 }, //vec3_t mins; - { 35, 35, 25 }, //vec3_t maxs; - -15.0f, //float zOffset; + { -20, -20, -20 }, //vec3_t mins; + { 20, 20, 20 }, //vec3_t maxs; + -10.0f, //float zOffset; TR_GRAVITY, //trType_t traj; 0.0, //float bounce; HIVE_BP, //int buildPoints; |