Skip to content

Commit 8993ab9

Browse files
authored
Fix Cape equal check (#430)
1 parent f46bed4 commit 8993ab9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/main/kotlin/com/lambda/client/capeapi/DataClasses.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ data class Cape(
3333
return this === other
3434
|| other is Cape
3535
&& other.capeUUID == capeUUID
36-
&& other.type == other.type
36+
&& other.type == type
3737
}
3838

3939
override fun hashCode(): Int {

0 commit comments

Comments
 (0)