fix stem helper functions unhelpfully registering 0 stem slop as false

This commit is contained in:
Bob 2022-02-19 15:42:36 -05:00
parent 0d807f3b14
commit b36bf13b3e
1 changed files with 8 additions and 8 deletions

View File

@ -91,26 +91,26 @@ module blank() {
children(); children();
} }
module cherry(slop) { module cherry(slop = undef) {
$stem_slop = slop ? slop : $stem_slop; $stem_slop = slop != undef ? slop : $stem_slop;
$stem_type = "cherry"; $stem_type = "cherry";
children(); children();
} }
module alps(slop) { module alps(slop = undef) {
$stem_slop = slop ? slop : $stem_slop; $stem_slop = slop != undef ? slop : $stem_slop;
$stem_type = "alps"; $stem_type = "alps";
children(); children();
} }
module rounded_cherry(slop) { module rounded_cherry(slop = undef) {
$stem_slop = slop ? slop : $stem_slop; $stem_slop = slop != undef ? slop : $stem_slop;
$stem_type = "rounded_cherry"; $stem_type = "rounded_cherry";
children(); children();
} }
module box_cherry(slop) { module box_cherry(slop = undef) {
$stem_slop = slop ? slop : $stem_slop; $stem_slop = slop != undef ? slop : $stem_slop;
$stem_type = "box_cherry"; $stem_type = "box_cherry";
children(); children();
} }