]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/lib/intrusivelist.qh
Revert IL_REMOVE fix (breaks too much)
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / intrusivelist.qh
index c83b2e69c7e0e71908be3e075e2b9506d06447f7..4fa49d3f3bfef7bc41035a9bb56e35cf1db755a4 100644 (file)
@@ -121,7 +121,7 @@ void IL_REMOVE(IntrusiveList this, entity it)
        assert(this, return);
        .entity il_next = this.il_nextfld;
        .entity il_prev = this.il_prevfld;
-       assert(!IL_CONTAINS(this, it), return);
+       //assert(!IL_CONTAINS(this, it), return);
        entity next = it.(il_next);
        entity prev = it.(il_prev);
        entity ohead = this.il_head;