Fix CustomObjective equals method, which would case the Listener to randomly unregister (OMG GRRRRRRRRRR)

This commit is contained in:
Nathan Wolf 2015-11-17 12:47:53 -08:00
parent 2abb699f4e
commit 08982649e8

View File

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