Skip to content

Commit

Permalink
v1.8.8 - Actually fix incompatibility between C:D&D and Garnished
Browse files Browse the repository at this point in the history
  • Loading branch information
DakotaPride committed Jun 22, 2024
1 parent fee56e5 commit 701a300
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx2G
# Mod Info
maven_group = net.dakotapride
archives_base_name = garnished
mod_version = 1.8.7
mod_version = 1.8.8

minecraft_version = 1.19.2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public boolean isValidAt(Level level, BlockPos pos) {

@Override
public int getPriority() {
return 500;
return 2000;
}

@Override
Expand Down Expand Up @@ -136,7 +136,7 @@ public boolean isValidAt(Level level, BlockPos pos) {

@Override
public int getPriority() {
return 600;
return 2100;
}

@Override
Expand Down Expand Up @@ -192,7 +192,7 @@ public boolean isValidAt(Level level, BlockPos pos) {

@Override
public int getPriority() {
return 700;
return 2200;
}

@Override
Expand Down Expand Up @@ -248,7 +248,7 @@ public boolean isValidAt(Level level, BlockPos pos) {

@Override
public int getPriority() {
return 800;
return 2300;
}

@Override
Expand Down Expand Up @@ -304,7 +304,7 @@ public boolean isValidAt(Level level, BlockPos pos) {

@Override
public int getPriority() {
return 900;
return 2400;
}

@Override
Expand Down Expand Up @@ -360,7 +360,7 @@ public boolean isValidAt(Level level, BlockPos pos) {

@Override
public int getPriority() {
return 1000;
return 2500;
}

@Override
Expand Down Expand Up @@ -416,7 +416,7 @@ public boolean isValidAt(Level level, BlockPos pos) {

@Override
public int getPriority() {
return 1100;
return 2600;
}

@Override
Expand Down

0 comments on commit 701a300

Please sign in to comment.