From 798c8e900d717536c1ff7d8ddc02f5888fd9a59e Mon Sep 17 00:00:00 2001 From: Katie Mummah Date: Tue, 23 Jul 2024 15:11:53 -0500 Subject: [PATCH] use resbuf unpackaged --- src/reactor.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/reactor.cc b/src/reactor.cc index 0e4dca51c..5059a3d47 100644 --- a/src/reactor.cc +++ b/src/reactor.cc @@ -64,9 +64,9 @@ void Reactor::EnterNotify() { cyclus::Facility::EnterNotify(); // Set keep packaging parameter in all ResBufs - fresh.keep_packaging(keep_packaging); - core.keep_packaging(keep_packaging); - spent.keep_packaging(keep_packaging); + fresh.unpackaged(!keep_packaging); + core.unpackaged(!keep_packaging); + spent.unpackaged(!keep_packaging); // If the user ommitted fuel_prefs, we set it to zeros for each fuel // type. Without this segfaults could occur - yuck.