From 4cb61a2e8df561f533eec9984f0fb269c2fe7f62 Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 26 Feb 2021 18:15:24 -0500 Subject: [PATCH] Made comments more descriptive --- common/src/comp/buff.rs | 2 +- common/sys/src/aura.rs | 4 ++-- common/sys/src/buff.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/common/src/comp/buff.rs b/common/src/comp/buff.rs index cf833efbf0..5b4ec2d542 100644 --- a/common/src/comp/buff.rs +++ b/common/src/comp/buff.rs @@ -77,7 +77,7 @@ pub enum BuffCategory { Magical, Divine, PersistOnDeath, - FromAura(bool), // bool used to check freshness of buff being apllied from aura + FromAura(bool), // bool used to check if buff recently set by aura } #[cfg(not(target_arch = "wasm32"))] diff --git a/common/sys/src/aura.rs b/common/sys/src/aura.rs index d5c0ad158a..3a7dda3f6b 100644 --- a/common/sys/src/aura.rs +++ b/common/sys/src/aura.rs @@ -42,7 +42,7 @@ impl<'a> System<'a> for Sys { auras.set_event_emission(false); // Iterate through all buffs, on any buffs that are from an aura, sets the check - // for whether the buff is fresh to false + // for whether the buff recently set by aura to false for (_, mut buffs_comp) in (&read_data.entities, &mut buffs).join() { for (_, buff) in buffs_comp.buffs.iter_mut() { if let Some(cat_id) = buff @@ -141,7 +141,7 @@ impl<'a> System<'a> for Sys { } // Finds all buffs on target that are from an aura, are of the // same buff kind, and are of at most the same strength - // For any such buffs, sets freshness to fresh + // For any such buffs, marks it as recently applied for (_, buff) in target_buffs.buffs.iter_mut().filter(|(_, buff)| { buff.cat_ids.iter().any(|cat_id| { diff --git a/common/sys/src/buff.rs b/common/sys/src/buff.rs index cd3898b2ed..7e5e6ebe7e 100644 --- a/common/sys/src/buff.rs +++ b/common/sys/src/buff.rs @@ -180,7 +180,7 @@ impl<'a> System<'a> for Sys { } fn tick_buff(id: u64, buff: &mut Buff, dt: f32, mut expire_buff: impl FnMut(u64)) { - // If a buff is freshly applied from an aura, do not tick duration + // If a buff is recently applied from an aura, do not tick duration if buff .cat_ids .iter()