Objects
These pages will document the objects provided by the Breeze API
All available objects have these functions:
equals(Object obj): boolean
equals(Object obj): boolean
Returns whether the given object is equal to the current object.
When comparing wrapped objects, ALWAYS use this method, for example:
if (mc.getPlayer() == entity) {}
will NOT work, use the following:
if (mc.getPlayer().equals(entity)) {}
Last updated