diff --git a/common/src/depot.rs b/common/src/depot.rs index 8ad8cd1707..358f357a1d 100644 --- a/common/src/depot.rs +++ b/common/src/depot.rs @@ -94,7 +94,7 @@ impl Depot { if entry.gen == id.gen { entry.item.as_ref() } else { - panic!("Stale ID used to access depot entry"); + None } } else { None @@ -106,7 +106,7 @@ impl Depot { if entry.gen == id.gen { entry.item.as_mut() } else { - panic!("Stale ID used to access depot entry"); + None } } else { None