diff --git a/crates/torii/cli/src/options.rs b/crates/torii/cli/src/options.rs index 7028804a1a..22db9cd4dd 100644 --- a/crates/torii/cli/src/options.rs +++ b/crates/torii/cli/src/options.rs @@ -179,7 +179,7 @@ pub struct IndexingOptions { )] #[serde(default)] pub controllers: bool, - + /// Whether or not to read models from the block number they were registered in. /// If false, models will be read from the latest block. #[arg( @@ -251,7 +251,7 @@ impl IndexingOptions { if !self.controllers { self.controllers = other.controllers; } - + if !self.strict_model_reader { self.strict_model_reader = other.strict_model_reader; }