Merge pull request #11 from rsheldiii/artisan-needs-depth

artisan() needs depth
This commit is contained in:
Bob 2019-10-12 23:58:53 -04:00 committed by GitHub
commit 38e30689d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ module key(inset = false) {
keytop(); keytop();
if($key_bump) top_of_key() keybump($key_bump_depth, $key_bump_edge); if($key_bump) top_of_key() keybump($key_bump_depth, $key_bump_edge);
// additive objects at the top of the key // additive objects at the top of the key
if(!inset) artisan() children(); if(!inset) artisan(0) children();
// render the clearance check if it's enabled, but don't have it intersect with anything // render the clearance check if it's enabled, but don't have it intersect with anything
if ($clearance_check) %clearance_check(); if ($clearance_check) %clearance_check();
} }