Skip to content

Commit

Permalink
Fix Cape equal check (lambda-client#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
Blade-ua authored and rfresh2 committed Dec 19, 2022
1 parent bff3c7c commit 69410dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/com/lambda/client/capeapi/DataClasses.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ data class Cape(
return this === other
|| other is Cape
&& other.capeUUID == capeUUID
&& other.type == other.type
&& other.type == type
}

override fun hashCode(): Int {
Expand Down

0 comments on commit 69410dd

Please sign in to comment.