Fix CustomObjective equals method, which would cause the Listener to randomly unregister

This commit is contained in:
Nathan Wolf 2015-11-18 08:31:55 -08:00
parent 877b593e7e
commit 4fa7bb4594

View File

@ -219,9 +219,10 @@ public abstract class CustomObjective implements Listener {
return false;
}
return true;
}
return true;
return false;
}
}