Skip to content

Commit

Permalink
fix: fixed a bunch of features returning false when actually being pl…
Browse files Browse the repository at this point in the history
…aced
  • Loading branch information
TheBv committed Dec 26, 2023
1 parent 97ca823 commit 9999fc4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ public boolean place(FeaturePlaceContext<NoneFeatureConfiguration> context) {
}
}

return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ public boolean place(FeaturePlaceContext<NoneFeatureConfiguration> context) {
}
}

return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ public boolean place(FeaturePlaceContext<NoneFeatureConfiguration> context) {
}
}

return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ public boolean place(FeaturePlaceContext<NoneFeatureConfiguration> context) {
}
}

return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ public boolean place(FeaturePlaceContext<NoneFeatureConfiguration> context) {
}
}

return false;
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ public boolean place(FeaturePlaceContext<NoneFeatureConfiguration> context) {
}
}

return false;
return true;
}
}

0 comments on commit 9999fc4

Please sign in to comment.