Skip to content

Commit 6e0b9c6

Browse files
committed
weh misspelling
1 parent a26df9f commit 6e0b9c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Entities/Misc/GlowController.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,13 @@ private void Process(Entity entity)
143143
if (!lightOrBloomAdded)
144144
return;
145145

146-
// list of multiplier IEnumerators for the
146+
// list of multiplier enumerators for the alpha of lights and bloom
147147
List<IEnumerator> multipliers = [];
148148

149-
// if a flag is specified, add a multiplier that will fade the entity's lights and blooms in/out with the flag
149+
// if a flag is specified, add a multiplier that will fade the entity's lights and bloom in/out with the flag
150150
if (!string.IsNullOrEmpty(flag))
151151
multipliers.Add(FlagFadeMultiplier(entity, flag));
152-
// some entities get a special multiplier that fades out/in lights and blooms on death/respawn if they have a sprite with an animation id contained in `deathAnimationIds`
152+
// some entities get a special multiplier that fades out/in lights and bloom on death/respawn if they have a sprite with an animation id contained in `deathAnimationIds`
153153
if (entity.Components.GetAll<Sprite>().FirstOrDefault(s => deathAnimationIds.Any(s.Has)) is { } sprite)
154154
multipliers.Add(DeathFadeMultiplier(entity, sprite));
155155

0 commit comments

Comments
 (0)