Skip to content

Commit

Permalink
Finalized 1.17 version
Browse files Browse the repository at this point in the history
  • Loading branch information
stuin committed Jun 25, 2021
1 parent ef1187e commit e018499
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencies {

//REI
modImplementation("me.shedaniel:RoughlyEnoughItems-api-fabric:${project.rei_version}")
modRuntime("me.shedaniel:RoughlyEnoughItems-fabric:${project.rei_version}")
//modRuntime("me.shedaniel:RoughlyEnoughItems-fabric:${project.rei_version}")

//Wrenchable api
def wrenchVersion = "com.zundrel:wrenchable:${project.wrenchable_version}"
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=1.17
yarn_mappings=build.11
yarn_mappings=build.13
loader_version=0.11.6

# Mod Properties
Expand All @@ -13,7 +13,7 @@ org.gradle.jvmargs=-Xmx1G
mod_version = 2.1.0

# Dependencies
fabric_version=0.35.2+1.17
patchouli_version=1.17-52-FABRIC-SNAPSHOT
rei_version=6.0.251-alpha
fabric_version=0.36.0+1.17
patchouli_version=1.17-55-FABRIC-SNAPSHOT
rei_version=6.0.258-alpha
wrenchable_version=1.1.0+1.17
2 changes: 1 addition & 1 deletion src/main/java/modfest/lacrimis/util/DuctUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public class DuctUtil {

public static List<BlockPos> scanDucts(World world, BlockPos pos, boolean extracting, int goal, Tester test) {
if(world == null || world instanceof ClientWorld)
if(world == null || world.isClient)
return new ArrayList<>();

//Set up block lists
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 @@ -14,7 +14,7 @@
],
"contact": {
"homepage": "https://www.curseforge.com/minecraft/mc-mods/lacrimis",
"sources": "https://github.com/2xsaiko/modfest-1.16.git"
"sources": "https://github.com/2xsaiko/lacrimis.git"
},

"icon": "assets/lacrimis/icon.png",
Expand Down

0 comments on commit e018499

Please sign in to comment.