diff --git a/server/src/construct.rs b/server/src/construct.rs index 7465b037..6d917ea7 100644 --- a/server/src/construct.rs +++ b/server/src/construct.rs @@ -97,7 +97,11 @@ impl ConstructEffect { } pub fn get_multiplier(&self) -> u64 { - self.effect.apply(100, self.meta) + match self.meta { + Some(EffectMeta::Multiplier(s)) => s, + _ => 0 + } + } }