mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-21 19:32:21 +00:00
SERVER: Scale Power-Up sparkle to be more supplemental to mesh
This commit is contained in:
parent
be38f652a9
commit
30f01b2e12
1 changed files with 7 additions and 1 deletions
|
@ -739,7 +739,13 @@ void(vector where, float type) Spawn_Powerup =
|
|||
|
||||
// Scale down for NZ:P Beta
|
||||
if (map_compatibility_mode == MAP_COMPAT_BETA) {
|
||||
powerup.scale = sparkle.scale = 0.66;
|
||||
powerup.scale = 0.66;
|
||||
sparkle.scale = 0.45;
|
||||
}
|
||||
// The "normal" sized sparkle also needs scaled down
|
||||
// to be less aggressive and more supplemental.
|
||||
else {
|
||||
sparkle.scale = 0.66;
|
||||
}
|
||||
|
||||
sparkle.think = PU_SparkleThink;
|
||||
|
|
Loading…
Reference in a new issue