Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix boilerplate failure
  • Loading branch information
PseudoKnight committed Dec 16, 2020
1 parent 2afb49e commit 714a6a0
Showing 1 changed file with 15 additions and 0 deletions.
Expand Up @@ -55,4 +55,19 @@ public MCProjectile launchProjectile(MCEntityType projectile, Vector3D init) {
return null;
}
}

@Override
public String toString() {
return eps.toString();
}

@Override
public int hashCode() {
return eps.hashCode();
}

@Override
public boolean equals(Object obj) {
return obj instanceof BukkitMCEntityProjectileSource && eps.equals(((BukkitMCEntityProjectileSource) obj).eps);
}
}

0 comments on commit 714a6a0

Please sign in to comment.