Skip to content

Commit

Permalink
declare proper loader dependency for mixin extras, absolutely combust…
Browse files Browse the repository at this point in the history
… due to implicit mixin behavior changes (genuinely, who in the loader team approved this)
  • Loading branch information
gliscowo authored and Dragon-Seeker committed Dec 18, 2023
1 parent 42b60ea commit 2daabcd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ minecraft_version=1.20.3
yarn_mappings=1.20.3+build.1
loader_version=0.15.0
# Mod Properties
mod_version=0.12.0-pre.3
mod_version=0.12.0-pre.5
maven_group=io.wispforest
archives_base_name=owo-lib
# Dependencies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ protected void build(FlowLayout rootComponent) {
.toList());
}

if (this.currentMatches == null || this.currentMatches.matches.isEmpty()) {
if (this.currentMatches.matches.isEmpty()) {
matchIndicator.text(Text.translatable("text.owo.config.search.no_matches"));
searchField.setEditableColor(0xEB1D36);
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/wispforest/owo/mixin/Copenhagen.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class Copenhagen {
private void malding(StructureWorldAccess world, Random random, OreFeatureConfig config, double startX, double endX, double startZ, double endZ,
double startY, double endY, int p_x, int p_y, int p_z, int p_horizontalSize, int p_verticalSize, CallbackInfoReturnable<Boolean> cir,
int i, BitSet bitSet, BlockPos.Mutable mutable, int j, double[] ds, ChunkSectionCache chunkSectionCache, int m, double d, double e,
double g, double h, int n, int o, int p, int q, int r, int s, int t, double u, int v, double w, int aa, ChunkSection chunkSection,
double g, double h, int n, int o, int p, int q, int r, int s, int t, double u, int v, double w, int aa, double x, int ab, ChunkSection chunkSection,
int ad, int ae, int af, BlockState blockState, Iterator<OreFeatureConfig.Target> var57, OreFeatureConfig.Target target) {

if (!Maldenhagen.isOnCopium(target.state.getBlock())) return;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
],
"accessWidener": "owo.accesswidener",
"depends": {
"fabricloader": "*",
"fabricloader": ">=0.15.0",
"fabric": ">=0.76",
"minecraft": ">=1.20.2"
},
Expand Down

0 comments on commit 2daabcd

Please sign in to comment.