diff --git a/core/src/construct.rs b/core/src/construct.rs index 3703e74c..9dccc33d 100644 --- a/core/src/construct.rs +++ b/core/src/construct.rs @@ -309,10 +309,6 @@ impl Construct { } pub fn spec_add(&mut self, spec: Spec) -> Result<&mut Construct, Error> { - if self.specs.len() >= 3 { - return Err(err_msg("maximum specs equipped")); - } - self.specs.push(spec); return Ok(self.calculate_colours()); }