]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Nerf it more (now the respawn time range is smaller).
authorRudolf Polzer <divVerent@gmail.com>
Tue, 13 Jun 2023 15:58:44 +0000 (11:58 -0400)
committerRudolf Polzer <divVerent@gmail.com>
Tue, 13 Jun 2023 15:58:44 +0000 (11:58 -0400)
Otherwise, CTF quickly can get unfair.

mutators.cfg
qcsrc/common/mutators/mutator/killers_spawn_faster/sv_respawntime.qc

index 01ecd87ced627eed334ede392370ef29da5f43be..35d358383320216305272e9362fae8cb1770e8d9 100644 (file)
@@ -532,5 +532,5 @@ set g_balance_cloaked_alpha 0.25 "opacity of cloaked players"
 set g_killers_spawn_faster 0 "Killers spawn faster: a mutator that penalizes dying, and rewards killing, by adjusting time to respawn"
 set g_killers_spawn_faster_frag_modifier -0.25 "Killers spawn faster: respawntime factor change when fragging someone"
 set g_killers_spawn_faster_death_modifier 0.5 "Killers spawn faster: respawntime factor change when dying"
-set g_killers_spawn_faster_min 0.2 "Killers spawn faster: minimum factor the respawn time can be multiplied with"
-set g_killers_spawn_faster_max 5.0 "Killers spawn faster: maximum factor the respawn time can be multiplied with"
+set g_killers_spawn_faster_min 0.25 "Killers spawn faster: minimum factor the respawn time can be multiplied with"
+set g_killers_spawn_faster_max 4.0 "Killers spawn faster: maximum factor the respawn time can be multiplied with"
index 03f252ffcf10e448b254c1f735116d518a5e3211..a617377d2f76fe9172a7f86724b5fd6549d95be3 100644 (file)
@@ -3,8 +3,8 @@
 AUTOCVAR(g_killers_spawn_faster, bool, false, "Killers spawn faster: a mutator that penalizes dying, and rewards killing, by adjusting time to respawn");
 AUTOCVAR(g_killers_spawn_faster_frag_modifier, float, -0.25, "Killers spawn faster: respawntime factor change when fragging someone");
 AUTOCVAR(g_killers_spawn_faster_death_modifier, float, 0.5, "Killers spawn faster: respawntime factor change when dying");
-AUTOCVAR(g_killers_spawn_faster_min, float, 0.2, "Killers spawn faster: minimum factor the respawn time can be multiplied with");
-AUTOCVAR(g_killers_spawn_faster_max, float, 5.0, "Killers spawn faster: maximum factor the respawn time can be multiplied with");
+AUTOCVAR(g_killers_spawn_faster_min, float, 0.25, "Killers spawn faster: minimum factor the respawn time can be multiplied with");
+AUTOCVAR(g_killers_spawn_faster_max, float, 4.0, "Killers spawn faster: maximum factor the respawn time can be multiplied with");
 REGISTER_MUTATOR(mutator_killers_spawn_faster, autocvar_g_killers_spawn_faster);
 
 float killers_spawn_faster_adjust(float base, float adj) {