Skip to content

Commit

Permalink
Fix wrong ref to reverse parameter instead of reversible
Browse files Browse the repository at this point in the history
  • Loading branch information
ceoloide committed Jan 17, 2024
1 parent eae51f0 commit e970eea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ergogen/footprints/reset_button.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ module.exports = {
if(p.include_bosses){
final += bosses
}
if(p.side == "F" || p.reverse) {
if(p.side == "F" || p.reversible) {
final += pads_front
if(p.silkscreen){
final += silkscreen_front
Expand All @@ -125,7 +125,7 @@ module.exports = {
final += courtyard_front
}
}
if(p.side == "B" || p.reverse) {
if(p.side == "B" || p.reversible) {
final += pads_back
if(p.silkscreen){
final += silkscreen_back
Expand Down

0 comments on commit e970eea

Please sign in to comment.