more gc fixes

This commit is contained in:
Daniella / Tove 2022-06-26 03:58:53 +02:00
parent 223c4d7bd1
commit 4dc53777b4

View file

@ -2157,6 +2157,10 @@ class ISBPLObject implements ISBPLUsable {
if(this == o) return true;
if(!(o instanceof ISBPLObject)) return false;
ISBPLObject object = (ISBPLObject) o;
if(this.type == null)
return false;
if(object.type == null)
return false;
if(!this.type.equals(object.type))
return false;
if(this.object == object.object)