@woosh/meep-engine 2.84.10 → 2.84.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/meep.cjs CHANGED
@@ -60816,7 +60816,7 @@ class Cache {
60816
60816
 
60817
60817
  if (
60818
60818
  this.weight > this.maxWeight
60819
- && new_weight >= this.maxWeight //make it less likely to drop entire cache
60819
+ && new_weight <= this.maxWeight //make it less likely to drop entire cache
60820
60820
  ) {
60821
60821
  this.evictUntilWeight(this.maxWeight);
60822
60822
  }