diff --git a/tools/qflight/source/entities.c b/tools/qflight/source/entities.c index a817703b6..7cd5329c1 100644 --- a/tools/qflight/source/entities.c +++ b/tools/qflight/source/entities.c @@ -311,7 +311,7 @@ LoadEntities (void) else if (!strcmp(com_token, "none")) entity->attenuation = LIGHT_NO_ATTEN; else if (!strcmp(com_token, "havoc")) - entity->attenuation = LIGHT_REALISTIC; + entity->attenuation = LIGHT_LH; else entity->attenuation = atoi (com_token); } else if (!strcmp(key, "_radius")) diff --git a/tools/qflight/source/options.c b/tools/qflight/source/options.c index bfd95bcbc..23a1fb477 100644 --- a/tools/qflight/source/options.c +++ b/tools/qflight/source/options.c @@ -159,7 +159,7 @@ DecodeArgs (int argc, char **argv) else if (!strcmp(optarg, "none")) options.attenuation = LIGHT_NO_ATTEN; else if (!strcmp(optarg, "havoc")) - options.attenuation = LIGHT_REALISTIC; + options.attenuation = LIGHT_LH; else { options.attenuation = strtol (optarg, &eptr, 10); if (eptr == optarg || *eptr)