Skip to content

Commit c4f6de5

Browse files
committed
fix: Fix failing build and tests
1 parent 7fe8694 commit c4f6de5

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

buildSrc/shared.gradle.kts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,9 @@ repositories {
7676
}
7777

7878
maven {
79-
url = uri("https://maven.pkg.github.com/refinedmods/refinedstorage2")
80-
credentials {
81-
username = "anything"
82-
password = "\u0067hp_oGjcDFCn8jeTzIj4Ke9pLoEVtpnZMP4VQgaX"
79+
url = uri("https://maven.creeperhost.net/release")
80+
content {
81+
includeGroup("com.refinedmods.refinedstorage")
8382
}
8483
}
8584

enderio-base/src/main/java/com/enderio/base/api/soul/Soul.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,10 @@ public static boolean isSameEntity(Soul soul, EntityType<?> entityType) {
148148
}
149149

150150
public static boolean isSameEntitySameTag(Soul soul1, Soul soul2) {
151+
if (!isSameEntity(soul1, soul2)) {
152+
return false;
153+
}
154+
151155
return isSameTag(soul1.entityTag(), soul2.entityTag());
152156
}
153157

0 commit comments

Comments
 (0)