Skip to content

Commit

Permalink
fix(writer): Write BSDF modifier to .blk file
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkelkp committed Oct 13, 2022
1 parent 16723f6 commit 9b847f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion honeybee_radiance/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ def _write_static_files(
mod_strs.append(mod.to_radiance(minimal))
for mod in modifiers_blk:
if isinstance(mod, (aBSDF, BSDF)):
_process_bsdf_modifier(mod, mod_strs, minimal)
_process_bsdf_modifier(mod, mod_blk_strs, minimal)
else:
mod_blk_strs.append(mod.to_radiance(minimal))

Expand Down

0 comments on commit 9b847f0

Please sign in to comment.